summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:25 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:25 +0200
commit7626715b0fe46c3f17f8acb244d7768bc8edc7e5 (patch)
treea023d18a2134fb929b8ff4dc0ef05a199e12c778 /board
parenta0b0cfc5ed9759a50aefc264c7490b19d617d12b (diff)
downloadbarebox-7626715b0fe46c3f17f8acb244d7768bc8edc7e5.tar.gz
barebox-7626715b0fe46c3f17f8acb244d7768bc8edc7e5.tar.xz
svn_rev_122
rmeove. It is autogenerated
Diffstat (limited to 'board')
-rw-r--r--board/scb9328/u-boot.lds38
1 files changed, 0 insertions, 38 deletions
diff --git a/board/scb9328/u-boot.lds b/board/scb9328/u-boot.lds
deleted file mode 100644
index 7af965d110..0000000000
--- a/board/scb9328/u-boot.lds
+++ /dev/null
@@ -1,38 +0,0 @@
-
-OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
-OUTPUT_ARCH(arm)
-ENTRY(_start)
-SECTIONS
-{
- . = 0x00000000;
-
- . = ALIGN(4);
- .text :
- {
- cpu/arm920t/start.o (.text)
- *(.text)
- }
-
- . = ALIGN(4);
- .rodata : { *(.rodata) }
-
- . = ALIGN(4);
- .data : { *(.data) }
-
- . = ALIGN(4);
- .got : { *(.got) }
-
- . = .;
- __u_boot_cmd_start = .;
- .u_boot_cmd : { *(.u_boot_cmd) }
- __u_boot_cmd_end = .;
-
- __u_boot_initcalls_start = .;
- .u_boot_initcalls : { *(.initcall.0) *(.initcall.1) *(.initcall.2) *(.initcall.3) *(.initcall.4) *(.initcall.5) *(.initcall.6) *(.initcall.7) }
- __u_boot_initcalls_end = .;
-
- . = ALIGN(4);
- __bss_start = .;
- .bss : { *(.bss) }
- _end = .;
-}