X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Flart%2Fu-boot.lds;h=258bece23cf59813a511d23556e4da02ff940c25;hb=7e2a24dca9a3213f0b4941562e4387e20bec3e2d;hp=f4b0ade27319bbb0030684219be651f820a98d3b;hpb=c609719b8d1b2dca590e0ed499016d041203e403;p=oweals%2Fu-boot.git diff --git a/board/lart/u-boot.lds b/board/lart/u-boot.lds index f4b0ade273..258bece23c 100644 --- a/board/lart/u-boot.lds +++ b/board/lart/u-boot.lds @@ -26,28 +26,31 @@ OUTPUT_ARCH(arm) ENTRY(_start) SECTIONS { - . = 0x00000000; + . = 0x00000000; - . = ALIGN(4); + . = ALIGN(4); .text : { cpu/sa1100/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 = .; }