X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Fixdp425%2Fu-boot.lds;h=e2ceac7227cbc320e87375020205585a5fdc539a;hb=0f2859689a283ecb0e3d29e23ff7e21dbb6abb70;hp=23f4bd0b0e4b4f1c221aafd8b0e1b809004db490;hpb=2d5b561e2bfdee8552a99b2cf93016cce2a74895;p=oweals%2Fu-boot.git diff --git a/board/ixdp425/u-boot.lds b/board/ixdp425/u-boot.lds index 23f4bd0b0e..e2ceac7227 100644 --- a/board/ixdp425/u-boot.lds +++ b/board/ixdp425/u-boot.lds @@ -26,30 +26,31 @@ OUTPUT_ARCH(arm) ENTRY(_start) SECTIONS { - . = 0x00000000; + . = 0x00000000; - . = ALIGN(4); + . = ALIGN(4); .text : { cpu/ixp/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_start = .; - .bss : { *(.bss) } - bss_end = .; - - armboot_end = .; + . = ALIGN(4); + __bss_start = .; + .bss : { *(.bss) } + _end = .; }