summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlison Wang <b18965@freescale.com>2015-10-15 17:54:40 +0800
committerYork Sun <yorksun@freescale.com>2015-10-26 09:09:57 -0700
commit947cee1127c5fa97529c8cda4f0b48d141f92560 (patch)
tree9f0390b1bb972ea349afb0eabd53dbe5359c08d6 /Makefile
parent713bf94ff20eff16600c3ab4e88b72feee6e206d (diff)
arm: ls1021a: Add QSPI or IFC support in SD boot
As QSPI and IFC are pin-multiplexed on LS1021A, only IFC is supported in SD boot now. For the customer's demand, QSPI needs to be supported in SD boot too. This patch adds QSPI or IFC support in SD boot according to the corresponding defconfig. For detail, ls1021atwr_sdcard_ifc_defconfig is used to support IFC in SD boot and ls1021atwr_sdcard_qspi_defconfig is used to support QSPI in SD boot. Signed-off-by: Alison Wang <alison.wang@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d4c35ba09d..3c21f8ddf9 100644
--- a/Makefile
+++ b/Makefile
@@ -1130,7 +1130,11 @@ spl/u-boot-spl.pbl: spl/u-boot-spl.bin FORCE
$(call if_changed,mkimage)
ifeq ($(ARCH),arm)
+ifdef CONFIG_DM
+UBOOT_BINLOAD := u-boot-dtb.img
+else
UBOOT_BINLOAD := u-boot.img
+endif
else
UBOOT_BINLOAD := u-boot.bin
endif