recovery: add missing file
authorMinkyu Kang <mk7.kang@samsung.com>
Wed, 18 Aug 2010 11:45:19 +0000 (20:45 +0900)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 18 Aug 2010 11:45:19 +0000 (20:45 +0900)
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
recovery/board/samsung/universal_c100/recovery.lds [new file with mode: 0644]
recovery/board/samsung/universal_c110/recovery.lds [new file with mode: 0644]

diff --git a/recovery/board/samsung/universal_c100/recovery.lds b/recovery/board/samsung/universal_c100/recovery.lds
new file mode 100644 (file)
index 0000000..67fbf7a
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2005-2010 Samsung Electronics
+ * Kyungmin Park <kyungmin.park@samsung.com>
+ */
+
+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 (file)
index 0000000..115eb90
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2005-2010 Samsung Electronics
+ * Kyungmin Park <kyungmin.park@samsung.com>
+ */
+
+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 = .;
+}