X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Fimpa7%2Fu-boot.lds;h=64d946c439210f6a58ece41c2838bea70d3a6498;hb=31a649234ee4051e96cf45285cdf2dbfa668d30c;hp=084964858bec5d2435cfba0663301f156ee04dc7;hpb=c609719b8d1b2dca590e0ed499016d041203e403;p=oweals%2Fu-boot.git diff --git a/board/impa7/u-boot.lds b/board/impa7/u-boot.lds index 084964858b..64d946c439 100644 --- a/board/impa7/u-boot.lds +++ b/board/impa7/u-boot.lds @@ -26,28 +26,30 @@ OUTPUT_ARCH(arm) ENTRY(_start) SECTIONS { - . = 0x00000000; + . = 0x00000000; - . = ALIGN(4); + . = ALIGN(4); .text : { cpu/arm720t/start.o (.text) *(.text) } - . = ALIGN(4); - .rodata : { *(.rodata) } + . = ALIGN(4); + .rodata : { *(.rodata) } - . = ALIGN(4); - .data : { *(.data) } + . = ALIGN(4); + .data : { *(.data) } - . = ALIGN(4); - .got : { *(.got) } + . = ALIGN(4); + .got : { *(.got) } - armboot_end_data = .; + __u_boot_cmd_start = .; + .u_boot_cmd : { *(.u_boot_cmd) } + __u_boot_cmd_end = .; - . = ALIGN(4); - .bss : { *(.bss) } - - armboot_end = .; + . = ALIGN(4); + __bss_start = .; + .bss : { *(.bss) } + _end = .; }