X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=board%2Fsmdk2400%2Fu-boot.lds;h=f4fbf969c3cf6445dd210053c319e591440dc3ae;hb=4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e;hp=8c9c218ccab3ee4701ae8636bbf9c361e7854cc3;hpb=c609719b8d1b2dca590e0ed499016d041203e403;p=oweals%2Fu-boot.git diff --git a/board/smdk2400/u-boot.lds b/board/smdk2400/u-boot.lds index 8c9c218cca..f4fbf969c3 100644 --- a/board/smdk2400/u-boot.lds +++ b/board/smdk2400/u-boot.lds @@ -27,28 +27,31 @@ OUTPUT_ARCH(arm) ENTRY(_start) SECTIONS { - . = 0x00000000; + . = 0x00000000; - . = ALIGN(4); + . = ALIGN(4); .text : { cpu/arm920t/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 = .; }