summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-01-16 10:15:55 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-01-16 10:16:09 +0100
commit5c0e16591d9471a345b77a41fde76de34f301f6b (patch)
tree41536b266914636bca310d244e998acae434dd01 /arch
parent9348be5c1800b7cac5ec0e6996abcb3875cd6041 (diff)
downloadbarebox-5c0e16591d9471a345b77a41fde76de34f301f6b.tar.gz
barebox-5c0e16591d9471a345b77a41fde76de34f301f6b.tar.xz
images: Drop unnecessary fix_size
Now that we compile the compressed binary into the decompressor we no longer need fix_size but can use the linker to fill in the image size into the binary. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/lib/pbl.lds.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/pbl.lds.S b/arch/arm/lib/pbl.lds.S
index 53c9ce0fe6..e7a94f912e 100644
--- a/arch/arm/lib/pbl.lds.S
+++ b/arch/arm/lib/pbl.lds.S
@@ -95,6 +95,6 @@ SECTIONS
.image_end : { *(.__image_end) }
- _barebox_image_size = __image_end - BASE;
+ _barebox_image_size = __piggydata_end - BASE;
_barebox_pbl_size = __bss_start - BASE;
}