]> git.sur5r.net Git - u-boot/commitdiff
ARC: Move .ivt section to the very beginning of the image
authorAlexey Brodkin <abrodkin@synopsys.com>
Tue, 29 May 2018 17:01:00 +0000 (20:01 +0300)
committerAlexey Brodkin <abrodkin@synopsys.com>
Thu, 31 May 2018 17:13:29 +0000 (20:13 +0300)
This is useful for cases when U-Boot image is put in ROM and
reset vector points to 0 where the very beginnign of the image reside.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
arch/arc/cpu/u-boot.lds

index d5c88ef9d4d012b17d9c88e3eb2fa8d9c9747dba..ff8239b66b406ab3e98815024e97c3e3f7b8e394 100644 (file)
@@ -12,13 +12,6 @@ SECTIONS
 {
        . = CONFIG_SYS_TEXT_BASE;
        __image_copy_start = .;
-       __text_start = .;
-       .text : {
-               arch/arc/lib/start.o (.text*)
-               *(.text*)
-       }
-       __text_end = .;
-
        . = ALIGN(1024);
        __ivt_start = .;
        .ivt :
@@ -27,6 +20,14 @@ SECTIONS
        }
        __ivt_end = .;
 
+       . = ALIGN(1024);
+       __text_start = .;
+       .text : {
+               arch/arc/lib/start.o (.text*)
+               *(.text*)
+       }
+       __text_end = .;
+
        . = ALIGN(4);
        .rodata : {
                *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))