diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2006-01-03 00:40:02 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2006-01-03 00:40:02 +0000 |
commit | a3489cb481fdafdfe661e76f82144fa3747ef251 (patch) | |
tree | d139fb151c3b56038dc2a7d40c58944b18ce1de5 /openwrt/target | |
parent | 39701f32649edbd4576397f88a4f9b282f0005d8 (diff) | |
download | mtk-20170518-a3489cb481fdafdfe661e76f82144fa3747ef251.zip mtk-20170518-a3489cb481fdafdfe661e76f82144fa3747ef251.tar.gz mtk-20170518-a3489cb481fdafdfe661e76f82144fa3747ef251.tar.bz2 |
first load network driver (10), then wlan driver (20) and then wlcompat, so the order of eth0/eth1 is as used to
SVN-Revision: 2814
Diffstat (limited to 'openwrt/target')
-rw-r--r-- | openwrt/target/linux/linux-2.4/broadcom.mk | 4 | ||||
-rw-r--r-- | openwrt/target/linux/package/wlcompat/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/openwrt/target/linux/linux-2.4/broadcom.mk b/openwrt/target/linux/linux-2.4/broadcom.mk index c8c4ece..aea4fad 100644 --- a/openwrt/target/linux/linux-2.4/broadcom.mk +++ b/openwrt/target/linux/linux-2.4/broadcom.mk @@ -8,11 +8,11 @@ # broadcom specific kmod packages $(eval $(call KMOD_template,BRCM_WL,brcm-wl,\ $(MODULES_DIR)/kernel/drivers/net/wl/wl.o \ -,CONFIG_WL,,10,wl)) +,CONFIG_WL,,20,wl)) $(eval $(call KMOD_template,BRCM_WL2,brcm-wl2,\ $(BUILD_DIR)/wl/wl2/wl.o \ -,CONFIG_WL,,10,wl)) +,CONFIG_WL,,20,wl)) $(eval $(call KMOD_template,BRCM_ET,brcm-et,\ $(MODULES_DIR)/kernel/drivers/net/et/et.o \ diff --git a/openwrt/target/linux/package/wlcompat/Makefile b/openwrt/target/linux/package/wlcompat/Makefile index 48b9bca..e8f69c4 100644 --- a/openwrt/target/linux/package/wlcompat/Makefile +++ b/openwrt/target/linux/package/wlcompat/Makefile @@ -35,7 +35,7 @@ $(PKG_BUILD_DIR)/wlcompat-debug.o: $(PKG_BUILD_DIR)/.prepared $(IPKG_KMOD_WLCOMPAT): $(PKG_BUILD_DIR)/wlcompat.o mkdir -p $(IDIR_KMOD_WLCOMPAT)/etc/modules.d - echo "wlcompat" > $(IDIR_KMOD_WLCOMPAT)/etc/modules.d/10-wlcompat + echo "wlcompat" > $(IDIR_KMOD_WLCOMPAT)/etc/modules.d/30-wlcompat mkdir -p $(IDIR_KMOD_WLCOMPAT)/lib/modules/$(LINUX_VERSION) cp $(PKG_BUILD_DIR)/wlcompat.o $(IDIR_KMOD_WLCOMPAT)/lib/modules/$(LINUX_VERSION)/ $(IPKG_BUILD) $(IDIR_KMOD_WLCOMPAT) $(PACKAGE_DIR) |