]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ppc4xx: Add custom linker script to board/*/config.mk
authorStefan Roese <sr@denx.de>
Tue, 27 Oct 2009 15:16:13 +0000 (16:16 +0100)
committerStefan Roese <sr@denx.de>
Mon, 2 Nov 2009 15:29:04 +0000 (16:29 +0100)
These boards have special linker scripts right now. We can't use the
common 4xx linker script here. So overrride the linker script (LDSCRIPT)
in board/*/config.mk and choose the board specific version.

Signed-off-by: Stefan Roese <sr@denx.de>
board/amirix/ap1000/config.mk
board/esd/dasa_sim/config.mk
board/ml2/config.mk
board/xilinx/ml300/config.mk

index c09783a6aea7256724ba8b9e5933a1bf744b9296..09c6efa5aef92e489ca7855f9dd6e18ff40bfad8 100644 (file)
@@ -25,3 +25,6 @@
 # like it's not in RAM.  This is a bit of voodoo to allow it to be
 # run from RAM instead of Flash.
 TEXT_BASE = 0x08000000
+
+# Use board specific linker script
+LDSCRIPT := $(SRCTREE)/board/amirix/ap1000/u-boot.lds
index ae855dc057f29064c48524fa4a1e39d3037a753b..4fe3774ffbca4018110f4cd86642aa1a36d6bec4 100644 (file)
@@ -21,3 +21,6 @@
 # MA 02111-1307 USA
 #
 TEXT_BASE = 0xFFFC0000
+
+# Use board specific linker script
+LDSCRIPT := $(SRCTREE)/board/esd/dasa_sim/u-boot.lds
index 41118d55290263c295de8819226168823145506f..5e0bdae91b798cc3bee10dc399d5c7995ef0f255 100644 (file)
@@ -27,3 +27,6 @@
 
 #TEXT_BASE = 0xFFFE0000
 TEXT_BASE = 0x18000000
+
+# Use board specific linker script
+LDSCRIPT := $(SRCTREE)/board/ml2/u-boot.lds
index 57ddb2fd7a55badf037a45883e3344958fca80c1..208a25ba11a48b084b3f2d5304102ebd2a06fb26 100644 (file)
@@ -27,3 +27,6 @@
 
 #TEXT_BASE = 0xFFFE0000
 TEXT_BASE = 0x04000000
+
+# Use board specific linker script
+LDSCRIPT := $(SRCTREE)/board/xilinx/ml300/u-boot.lds