diff options
author | Marek Vasut <marex@denx.de> | 2016-05-25 02:17:42 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-05-26 01:34:14 +0200 |
commit | ecc9d26062c9dd6d0752c988a54b95453c20c749 (patch) | |
tree | c833df8aaa8d148b2b2f59184dbfbfb2aeaa12a6 /arch | |
parent | ec35e12331512cf5ed0f22005d7b6fb4ccc35969 (diff) | |
download | u-boot-ecc9d26062c9dd6d0752c988a54b95453c20c749.tar.gz u-boot-ecc9d26062c9dd6d0752c988a54b95453c20c749.tar.xz u-boot-ecc9d26062c9dd6d0752c988a54b95453c20c749.zip |
mips: Allow overriding start.S in SPL
Certain chips, like the JZ47xx, have extreme size constraints on the
SPL size and require custom start.S . Allow overriding the start.S
the same way ARM MXS does it.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Cc: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 655a493382..0b5dbb68fd 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -4,6 +4,12 @@ head-y := arch/mips/cpu/start.o +ifeq ($(CONFIG_SPL_BUILD),y) +ifneq ($(CONFIG_SPL_START_S_PATH),) +head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o +endif +endif + libs-y += arch/mips/cpu/ libs-y += arch/mips/lib/ |