mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
83b7e2a7f2
Currently, some linker scripts are found by common code in config.mk. Some are found using CONFIG_SYS_LDSCRIPT, but the code for that is sometimes in arch config.mk and sometimes in board config.mk. Some are found using an arch-specific rule for looking in CPUDIR, etc. Further, the powerpc config.mk rule relied on CONFIG_NAND_SPL when it really wanted CONFIG_NAND_U_BOOT -- which covered up the fact that not all NAND_U_BOOT builds actually wanted CPUDIR/u-boot-nand.lds. Replace all of this -- except for a handful of boards that are actually selecting a linker script in a unique way -- with centralized ldscript finding. If board code specifies LDSCRIPT, that will be used. Otherwise, if CONFIG_SYS_LDSCRIPT is specified, that will be used. If neither of these are specified, then the central config.mk will check for the existence of the following, in order: $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds (only if CONFIG_NAND_U_BOOT) $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds (only if CONFIG_NAND_U_BOOT) $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds $(TOPDIR)/$(CPUDIR)/u-boot.lds Some boards (sc3, cm5200, munices) provided their own u-boot.lds that were dead code, because they were overridden by a CPUDIR u-boot.lds under the old powerpc rules. These boards' own u-boot.lds have bitrotted and no longer work -- these lds files have been removed. Signed-off-by: Scott Wood <scottwood@freescale.com> Tested-by: Graeme Russ <graeme.russ@gmail.com>
30 lines
756 B
Makefile
30 lines
756 B
Makefile
#
|
|
# (C) Copyright 2002
|
|
# Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
# David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
|
|
#
|
|
# (C) Copyright 2008
|
|
# Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
|
|
#
|
|
# SAMSUNG SMDK6400 board with mDirac3 (ARM1176) cpu
|
|
#
|
|
# see http://www.samsung.com/ for more information on SAMSUNG
|
|
|
|
# On SMDK6400 we use the 64 MB SDRAM bank at
|
|
#
|
|
# 0x50000000 to 0x58000000
|
|
#
|
|
# Linux-Kernel is expected to be at 0x50008000, entry 0x50008000
|
|
#
|
|
# we load ourselves to 0x57e00000 without MMU
|
|
# with MMU, load address is changed to 0xc7e00000
|
|
#
|
|
# download area is 0x5000c000
|
|
|
|
sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp
|
|
|
|
ifndef CONFIG_NAND_SPL
|
|
CONFIG_SYS_TEXT_BASE = $(RAM_TEXT)
|
|
else
|
|
CONFIG_SYS_TEXT_BASE = 0
|
|
endif
|