aboutsummaryrefslogtreecommitdiff
path: root/crt0/crt0.lds
diff options
context:
space:
mode:
authordave2007-01-02 07:58:12 +0000
committerdave2007-01-02 07:58:12 +0000
commit9515b16e21d8939ec228d585197fc2a283007a53 (patch)
tree3e1dcad05408f3aec68a7277cc89e5f9a640b832 /crt0/crt0.lds
parent66f426ef636bc88572bd3aef76b3fa9e997b5cd7 (diff)
Move the estorm directory to crt0, since it has now become the bootstrapping code for all NXT apps.
Diffstat (limited to 'crt0/crt0.lds')
-rw-r--r--crt0/crt0.lds18
1 files changed, 18 insertions, 0 deletions
diff --git a/crt0/crt0.lds b/crt0/crt0.lds
new file mode 100644
index 0000000..222e022
--- /dev/null
+++ b/crt0/crt0.lds
@@ -0,0 +1,18 @@
+SECTIONS
+{
+ . = 0x00000000;
+ . = ALIGN(4);
+ .bootstrap : { crt0_s.o(.bootstrap) crt0_c.o(.text) }
+
+ /DISCARD/ : {
+ *(.text*)
+ *(.data*)
+ *(.rodata*)
+ *(.bss*)
+ *(.note*)
+ *(.indent)
+ *(.comment)
+ *(.stab)
+ *(.stabstr)
+ }
+}