mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
d08e5ca301
Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
36 lines
533 B
Text
36 lines
533 B
Text
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
. = 0x00000000;
|
|
|
|
. = ALIGN(4);
|
|
.text :
|
|
{
|
|
start.o (.text)
|
|
lowlevel_init.o (.text)
|
|
nand_boot_fsl_nfc.o (.text)
|
|
*(.text)
|
|
. = 2K;
|
|
}
|
|
|
|
. = ALIGN(4);
|
|
.rodata : { *(.rodata) }
|
|
|
|
. = ALIGN(4);
|
|
.data : { *(.data) }
|
|
|
|
. = ALIGN(4);
|
|
.got : { *(.got) }
|
|
|
|
. = .;
|
|
__u_boot_cmd_start = .;
|
|
.u_boot_cmd : { *(.u_boot_cmd) }
|
|
__u_boot_cmd_end = .;
|
|
|
|
. = ALIGN(4);
|
|
__bss_start = .;
|
|
.bss : { *(.bss) }
|
|
_end = .;
|
|
}
|