diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-09-10 17:21:57 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-09-10 17:21:57 +0000 |
commit | c2a07679143e5a4c0b2f1150392e7aa3c8f1fd95 (patch) | |
tree | 86ae769d23b8605f4ce1cfbce937e3f038b12383 /openwrt/target/linux | |
parent | 0e71beaf51e9c4d36c8b906e01e7e8fe58cb81ab (diff) | |
download | mtk-20170518-c2a07679143e5a4c0b2f1150392e7aa3c8f1fd95.zip mtk-20170518-c2a07679143e5a4c0b2f1150392e7aa3c8f1fd95.tar.gz mtk-20170518-c2a07679143e5a4c0b2f1150392e7aa3c8f1fd95.tar.bz2 |
another KERNEL variable fix
SVN-Revision: 1889
Diffstat (limited to 'openwrt/target/linux')
-rw-r--r-- | openwrt/target/linux/package/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/openwrt/target/linux/package/Makefile b/openwrt/target/linux/package/Makefile index 4b8d068..e55cc54 100644 --- a/openwrt/target/linux/package/Makefile +++ b/openwrt/target/linux/package/Makefile @@ -8,12 +8,10 @@ package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan package-$(BR2_PACKAGE_KMOD_MADWIFI) += madwifi package-y += openwrt -ifeq ($(BOARD),brcm) -ifeq ($(LINUX_VERSION),2.4.30) +ifeq ($(BOARD)-$(KERNEL),brcm-2.4) package-$(BR2_PACKAGE_KMOD_WLCOMPAT) += wlcompat wlcompat-compile: openwrt-compile endif -endif all: compile install clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) @@ -21,6 +19,7 @@ compile: $(patsubst %,%-compile,$(package-y) $(package-m)) install: $(patsubst %,%-install,$(package-y)) MAKEOPTS:= BOARD="$(BOARD)" \ + KERNEL="$(KERNEL)" \ IPKG="$(IPKG)" \ TARGET_DIR="$(TARGET_DIR)" \ BUILD_DIR="$(BUILD_DIR)" \ |