From: Minkyu Kang Date: Wed, 18 Aug 2010 11:45:19 +0000 (+0900) Subject: recovery: add missing file X-Git-Tag: JH02_20100820~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48d59ac7408635df11f298284c1f30101207dae8;p=kernel%2Fu-boot.git recovery: add missing file Signed-off-by: Minkyu Kang --- diff --git a/recovery/board/samsung/universal_c100/recovery.lds b/recovery/board/samsung/universal_c100/recovery.lds new file mode 100644 index 0000000..67fbf7a --- /dev/null +++ b/recovery/board/samsung/universal_c100/recovery.lds @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2005-2010 Samsung Electronics + * Kyungmin Park + */ + +OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") +OUTPUT_ARCH(arm) +ENTRY(_start) +SECTIONS +{ + . = 0x00000000; + + . = ALIGN(4); + .text : + { + board/samsung/universal_c100/start.o (.text) + *(.text) + } + + . = ALIGN(4); + .rodata : { *(.rodata) } + + . = ALIGN(4); + .data : { *(.data) } + + . = ALIGN(4); + .got : { *(.got) } + + . = ALIGN(4); + __bss_start = .; + .bss : { *(.bss) } + _end = .; +} diff --git a/recovery/board/samsung/universal_c110/recovery.lds b/recovery/board/samsung/universal_c110/recovery.lds new file mode 100644 index 0000000..115eb90 --- /dev/null +++ b/recovery/board/samsung/universal_c110/recovery.lds @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2005-2010 Samsung Electronics + * Kyungmin Park + */ + +OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") +OUTPUT_ARCH(arm) +ENTRY(_start) +SECTIONS +{ + . = 0x00000000; + + . = ALIGN(4); + .text : + { + board/samsung/universal_c110/start.o (.text) + *(.text) + } + + . = ALIGN(4); + .rodata : { *(.rodata) } + + . = ALIGN(4); + .data : { *(.data) } + + . = ALIGN(4); + .got : { *(.got) } + + . = ALIGN(4); + __bss_start = .; + .bss : { *(.bss) } + _end = .; +}