diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-06-12 13:42:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-06-12 13:42:50 +0200 |
commit | d6ba106f2947ff39fb2be2422b512b6ce2d5366d (patch) | |
tree | ae04580ebbb41fc17e0a99c7d9e7d19901fd1c63 /package/u-boot/Makefile | |
parent | 60990305d50714468d4b7eddcc536b56b565a9af (diff) |
imx6: finetune makefile
Diffstat (limited to 'package/u-boot/Makefile')
-rw-r--r-- | package/u-boot/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile index e704f1c0b..5d92f78ff 100644 --- a/package/u-boot/Makefile +++ b/package/u-boot/Makefile @@ -27,6 +27,7 @@ $(eval $(call PKG_template,U_BOOT,u-boot,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEP UBOOT:= u-boot.bin ifeq ($(ADK_TARGET_SYSTEM_SOLIDRUN_IMX6),y) CONFIG:= mx6cuboxi_defconfig +UBOOT:= u-boot.img endif ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y) CONFIG:= rpi_defconfig @@ -83,6 +84,9 @@ u-boot-install: ifeq ($(ADK_TARGET_SYSTEM_BANANA_PRO),y) $(INSTALL_BIN) ./files/boot.script.bpi $(FW_DIR) endif +ifeq ($(ADK_TARGET_SYSTEM_SOLIDRUN_IMX6),y) + $(INSTALL_BIN) $(WRKBUILD)/SPL $(FW_DIR) +endif include $(ADK_TOPDIR)/mk/host-bottom.mk include $(ADK_TOPDIR)/mk/pkg-bottom.mk |