diff options
author | Henrik Nordström <henrik@henriknordstrom.net> | 2013-08-27 00:37:22 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-09-06 13:09:07 -0400 |
commit | 4c267374a29156a3109d2a4394bc9df41e10b620 (patch) | |
tree | 8a9fc6dd43bfb189b5f2df6527435b8a248aac54 | |
parent | 344ca0b40cf3a8feb1e7f9d4ff9e5041be706266 (diff) | |
download | u-boot-imx-4c267374a29156a3109d2a4394bc9df41e10b620.zip u-boot-imx-4c267374a29156a3109d2a4394bc9df41e10b620.tar.gz u-boot-imx-4c267374a29156a3109d2a4394bc9df41e10b620.tar.bz2 |
Always build u-boot.img when using CONFIG_SPL_FRAMEWORK
Use of uImage formatted u-boot have long been preferred, and recent
changes to better support Falcon mode on MMC now enforces it on MMC.
Signed-off-by: Henrik Nordstrom <henrik@henriknordstrom.net>
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -398,6 +398,7 @@ ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin +ALL-$(CONFIG_SPL_FRAMEWORK) += $(obj)u-boot.img ALL-$(CONFIG_TPL) += $(obj)tpl/u-boot-tpl.bin ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin ifneq ($(CONFIG_SPL_TARGET),) |