diff options
author | Jonas Gorski <jonas.gorski@gmail.com> | 2016-09-23 13:53:27 +0200 |
---|---|---|
committer | Jonas Gorski <jonas.gorski@gmail.com> | 2016-09-26 12:48:18 +0200 |
commit | d8075b15d09acdd02cd874f8969eeab0ecbe3f23 (patch) | |
tree | 29c3b87b9db2bbf86fd422b45b4d0230cc00760f /package/boot/uboot-mvebu | |
parent | bc1f006b4eea84d9f3fb2e9b9c5571557042f697 (diff) | |
download | upstream-d8075b15d09acdd02cd874f8969eeab0ecbe3f23.tar.gz upstream-d8075b15d09acdd02cd874f8969eeab0ecbe3f23.tar.bz2 upstream-d8075b15d09acdd02cd874f8969eeab0ecbe3f23.zip |
uboot-mvebu: make hidden and be m for clearfog to fix IB failing to add it
Uboot-mvebu isn't a real package, which will break the image builder
when it tries to install it during the packing step. Instead of cleafog
selecting it through its default packages, make it default to m if the
clearfog profile is selected.
This will ensure it is always build, but never added to the rootfs. This
fixes creating images for clearfog with IB.
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Acked-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/boot/uboot-mvebu')
-rw-r--r-- | package/boot/uboot-mvebu/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package/boot/uboot-mvebu/Makefile b/package/boot/uboot-mvebu/Makefile index 3cf6358448..2d01f86fcb 100644 --- a/package/boot/uboot-mvebu/Makefile +++ b/package/boot/uboot-mvebu/Makefile @@ -21,7 +21,6 @@ PKG_MD5SUM:=973c1d896be751321cc3aafa564f64b2 PKG_LICENSE:=GPL-2.0 GPL-2.0+ PKG_LICENSE_FILES:=Licenses/README -PKG_TARGETS:=bin PKG_BUILD_PARALLEL:=1 @@ -33,6 +32,7 @@ endef define uboot/clearfog TITLE:=U-Boot for SolidRun ClearFog A1 + DEVICE:=armada-388-clearfog endef UBOOTS:= \ @@ -42,7 +42,9 @@ define Package/uboot/template define Package/uboot-mvebu-$(1) SECTION:=boot CATEGORY:=Boot Loaders - DEPENDS:=@TARGET_mvebu + DEPENDS:=@(TARGET_DEVICE_mvebu_DEVICE_$(3)||TARGET_mvebu_DEVICE_$(3)) + DEFAULT:=m + HIDDEN:=1 TITLE:=$(2) URL:=http://www.denx.de/wiki/U-Boot VARIANT:=$(1) @@ -53,7 +55,7 @@ endef define BuildUBootPackage $(eval $(uboot/Default)) $(eval $(uboot/$(1))) - $(call Package/uboot/template,$(1),$(TITLE)) + $(call Package/uboot/template,$(1),$(TITLE),$(DEVICE)) endef define Build/Configure |