1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 08:31:19 +02:00

fix inclusion of kernel modules selected for install in images (closes: #598).

SVN-Revision: 4081
This commit is contained in:
Nicolas Thill 2006-06-25 21:37:07 +00:00
parent 49e12766bc
commit 152909a65f

@ -47,10 +47,10 @@ PKG_$(1) := $(PACKAGE_DIR)/kmod-$(2)_$(LINUX_VERSION)-$(BOARD)-$(LINUX_RELEASE)_
I_$(1) := $(KMOD_BUILD_DIR)/ipkg/$(2)
ifeq ($$(KDEPEND_$(1)),m)
ifneq ($(CONFIG_PACKAGE_KMOD_$(1)),)
ifneq ($$(CONFIG_PACKAGE_KMOD_$(1)),)
TARGETS += $$(PKG_$(1))
endif
ifeq ($(CONFIG_PACKAGE_KMOD_$(1)),y)
ifeq ($$(CONFIG_PACKAGE_KMOD_$(1)),y)
INSTALL_TARGETS += $$(PKG_$(1))
endif
endif