summaryrefslogtreecommitdiffstats
path: root/rbutil/mkzenboot/dualboot/dualboot.lds
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/mkzenboot/dualboot/dualboot.lds')
-rw-r--r--rbutil/mkzenboot/dualboot/dualboot.lds32
1 files changed, 0 insertions, 32 deletions
diff --git a/rbutil/mkzenboot/dualboot/dualboot.lds b/rbutil/mkzenboot/dualboot/dualboot.lds
deleted file mode 100644
index 7444a1e427..0000000000
--- a/rbutil/mkzenboot/dualboot/dualboot.lds
+++ /dev/null
@@ -1,32 +0,0 @@
-ENTRY(start)
-OUTPUT_FORMAT(elf32-littlearm)
-OUTPUT_ARCH(arm)
-
-MEMORY
-{
- /* keep this consistent with the address in mkzenboot.c */
-#if IMX233_SUBTARGET == 3700
- RAM : ORIGIN = 0x41000000, LENGTH = 0x8000
-#elif IMX233_SUBTARGET == 3600
- RAM : ORIGIN = 0x61000000, LENGTH = 0x8000
-#else
-#error define me
-#endif
-}
-
-SECTIONS
-{
- .text :
- {
- *(.start*)
- *(.text*)
- . = ALIGN(4);
- LONG(0x1ceb00da)
- of_vector = .;
- . += 4;
- rb_vector = .;
- . += 4;
- boot_arg = .;
- . += 4;
- } > RAM
-}