diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-06 17:24:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-06 17:24:01 +0000 |
commit | bd86f88b0a718336b75fa4b082a1ffda897a8d99 (patch) | |
tree | fb9c5cda9353b83d061dfb1413f5e9f6bce70fe9 /target/linux | |
parent | 5153308130bac3b7ce6ec4085d2438c79a4a7a34 (diff) | |
download | upstream-bd86f88b0a718336b75fa4b082a1ffda897a8d99.tar.gz upstream-bd86f88b0a718336b75fa4b082a1ffda897a8d99.tar.bz2 upstream-bd86f88b0a718336b75fa4b082a1ffda897a8d99.zip |
ar71xx: only build all loader images if the image builder is enabled - saves some time on make target/install
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32090 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 1c0384df26..6b45b551bf 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -1146,7 +1146,7 @@ endef define Image/Prepare gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz $(call CompressLzma,$(KDIR)/vmlinux,$(KDIR)/vmlinux.bin.lzma) - $(call Image/Build/Profile/Default,loader) + $(if $(CONFIG_IB),$(call Image/Build/Profile/Default,loader)) endef define Image/Build |