diff options
author | Yangbo Lu <yangbo.lu@nxp.com> | 2018-07-18 14:14:40 +0800 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-09-22 21:20:57 +0200 |
commit | eb684205e5e6958ad71cf4a179fa776f6507f7e3 (patch) | |
tree | fe6803b86bdfd42e65cbf894854e47c307d992fa /package/boot/uboot-layerscape/Makefile | |
parent | f0ec7bd27d206ea0eb9587e178ce0d7ddc006bce (diff) | |
download | upstream-eb684205e5e6958ad71cf4a179fa776f6507f7e3.tar.gz upstream-eb684205e5e6958ad71cf4a179fa776f6507f7e3.tar.bz2 upstream-eb684205e5e6958ad71cf4a179fa776f6507f7e3.zip |
layerscape: add SD card boot support
NOR/QSPI Flash on Layerscape board only has limited 64MB memory size.
Since some boards (ls1043ardb/ls1046ardb/ls1088ardb/ls1021atwr)
could support SD card boot, we added SD boot support for them to put
all things on SD card to meet large memory requirement.
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Diffstat (limited to 'package/boot/uboot-layerscape/Makefile')
-rw-r--r-- | package/boot/uboot-layerscape/Makefile | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/package/boot/uboot-layerscape/Makefile b/package/boot/uboot-layerscape/Makefile index 875e08f0e1..ef456bfc7e 100644 --- a/package/boot/uboot-layerscape/Makefile +++ b/package/boot/uboot-layerscape/Makefile @@ -44,16 +44,34 @@ define U-Boot/ls1043ardb ENV_SIZE:=0x20000 endef +define U-Boot/ls1043ardb-sdboot + NAME:=NXP LS1043ARDB SD Card Boot + UBOOT_CONFIG:=ls1043ardb_sdcard + UBOOT_IMAGE:=u-boot-with-spl-pbl.bin +endef + define U-Boot/ls1046ardb NAME:=NXP LS1046ARDB UBOOT_CONFIG:=ls1046ardb_qspi endef +define U-Boot/ls1046ardb-sdboot + NAME:=NXP LS1046ARDB SD Card Boot + UBOOT_CONFIG:=ls1046ardb_sdcard + UBOOT_IMAGE:=u-boot-with-spl-pbl.bin +endef + define U-Boot/ls1088ardb NAME:=NXP LS1088ARDB UBOOT_CONFIG:=ls1088ardb_qspi endef +define U-Boot/ls1088ardb-sdboot + NAME:=NXP LS1088ARDB SD Card Boot + UBOOT_CONFIG:=ls1088ardb_sdcard_qspi + UBOOT_IMAGE:=u-boot-with-spl.bin +endef + define U-Boot/ls2088ardb NAME:=NXP LS2088ARDB UBOOT_CONFIG:=ls2080ardb @@ -66,14 +84,26 @@ define U-Boot/ls1021atwr ENV_SIZE:=0x20000 endef +define U-Boot/ls1021atwr-sdboot + NAME:=NXP LS1021ATWR SD Card Boot + BUILD_SUBTARGET:=armv7 + UBOOT_CONFIG:=ls1021atwr_sdcard_ifc + UBOOT_IMAGE:=u-boot-with-spl-pbl.bin + ENV_SIZE:=0x20000 +endef + UBOOT_TARGETS := \ ls1012ardb \ ls1012afrdm \ ls1043ardb \ + ls1043ardb-sdboot \ ls1046ardb \ + ls1046ardb-sdboot \ ls1088ardb \ + ls1088ardb-sdboot \ ls2088ardb \ - ls1021atwr + ls1021atwr \ + ls1021atwr-sdboot define Build/InstallDev $(INSTALL_DIR) $(STAGING_DIR_IMAGE) |