diff options
author | John Crispin <john@openwrt.org> | 2015-10-05 10:25:28 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-10-05 10:25:28 +0000 |
commit | df47e4c55bdd44b85efb4f0df95fbb6466754c74 (patch) | |
tree | 0f19585a5ad11717c313595ba167453ebb195a40 /target/linux | |
parent | cd8a615d4f29db5c02db424e2d9863754c81a33e (diff) | |
download | upstream-df47e4c55bdd44b85efb4f0df95fbb6466754c74.tar.gz upstream-df47e4c55bdd44b85efb4f0df95fbb6466754c74.tar.bz2 upstream-df47e4c55bdd44b85efb4f0df95fbb6466754c74.zip |
target/mpc85xx: check if 'generic' subtarget for image file cuImage.tl-wdr4900-v1
Only add 'cuImage.tl-wdr4900-v1' to KERNEL_IMAGES if
the selected subtarget is 'generic'.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
SVN-Revision: 47109
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/mpc85xx/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/target/linux/mpc85xx/Makefile b/target/linux/mpc85xx/Makefile index e43327acd8..5f3ad6c3d4 100644 --- a/target/linux/mpc85xx/Makefile +++ b/target/linux/mpc85xx/Makefile @@ -16,10 +16,13 @@ SUBTARGETS=generic p1020 KERNEL_PATCHVER:=3.18 -KERNEL_IMAGES := zImage cuImage.tl-wdr4900-v1 - include $(INCLUDE_DIR)/target.mk +KERNEL_IMAGES := zImage +ifeq ($(SUBTARGET),generic) +KERNEL_IMAGES += cuImage.tl-wdr4900-v1 +endif + DEFAULT_PACKAGES += \ kmod-input-core kmod-input-gpio-keys kmod-button-hotplug \ kmod-leds-gpio kmod-booke-wdt \ |