the etrax bootloader tools source was added on initial merge, it is now sitting on...
[openwrt/svn-archive/archive.git] / target / linux / etrax-2.6 / image / e100boot / src / cbl / src / ldscript
diff --git a/target/linux/etrax-2.6/image/e100boot/src/cbl/src/ldscript b/target/linux/etrax-2.6/image/e100boot/src/cbl/src/ldscript
deleted file mode 100644 (file)
index 24c8a31..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-SECTIONS
-{
-  . = 0x380000f0;
-  __Stext = .;
-
-  .text :
-  {
-    KEEP (*(.startup))
-    KEEP (*(.text))
-    *(.text.*)
-    KEEP (*(.rodata))
-    *(.rodata.*)
-  } =0
-
-  __Etext = .;
-
-  .data :
-  {
-    __Sdata = .;
-    KEEP (*(.data))
-    *(.data.*)
-  }
-
-    __Edata = .;
-  . = ALIGN (4);
-   __Sbss = .;
-  .bss :
-  {
-   /* The network crc will land in the first four bytes of the
-       bss. Move the variables out of the way. */
-   . = . + 12;
-   *(.bss.*)
-   *(COMMON)
-  }
-
-  __Ebss = .;
-
-}