diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-30 13:03:58 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-30 13:03:58 +0000 |
commit | 6d7dff85964899bcd7ba001e8aea610ce2dc032b (patch) | |
tree | 9e43947f128c61b308eff2002ae9370617e3b7ae /include/image.mk | |
parent | 2b925161d8315f04598aabe2f40d04ce11ab7630 (diff) | |
download | upstream-6d7dff85964899bcd7ba001e8aea610ce2dc032b.tar.gz upstream-6d7dff85964899bcd7ba001e8aea610ce2dc032b.tar.bz2 upstream-6d7dff85964899bcd7ba001e8aea610ce2dc032b.zip |
image.mk: fix initramfs kernel build instructions leaking across device sections
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45156
Diffstat (limited to 'include/image.mk')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk index 0d388ec666..08b516d854 100644 --- a/include/image.mk +++ b/include/image.mk @@ -353,7 +353,7 @@ define Device/ExportVar $(1) : $(2):=$$($(2)) endef -Device/Export = $(foreach var,$(DEVICE_VARS) KERNEL,$(call Device/ExportVar,$(1),$(var))) +Device/Export = $(foreach var,$(DEVICE_VARS) KERNEL KERNEL_INITRAMFS,$(call Device/ExportVar,$(1),$(var))) define Device/Check _TARGET = $$(if $$(filter $(PROFILE),$$(PROFILES)),install,install-disabled) |