diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-06-13 17:47:58 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-06-18 06:35:16 +0200 |
commit | d8072a3530ea083a90044ef272de344a733dcacb (patch) | |
tree | e21163376ec0953653b8ee6f098c4f06272159cf /target | |
parent | dc7f540ce180707a8f0bc3a57634964687b48dd3 (diff) | |
download | upstream-d8072a3530ea083a90044ef272de344a733dcacb.tar.gz upstream-d8072a3530ea083a90044ef272de344a733dcacb.tar.bz2 upstream-d8072a3530ea083a90044ef272de344a733dcacb.zip |
gemini: Add appropriate Wireless kernel modules
The D-Link DIR-685 has a RealTek RT2880 mini-PCI card in a
slot. Activate the appropriate kernel module.
The Square One SQ201 has a Ralink RT61-based mini-PCI card.
Activate the appropriate kernel modules. This fixes the
previous error just activating the firmware: the kernel
module will bring in the firmware it needs.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/gemini/image/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/gemini/image/Makefile b/target/linux/gemini/image/Makefile index b631452a0f..ba2ee02bfa 100644 --- a/target/linux/gemini/image/Makefile +++ b/target/linux/gemini/image/Makefile @@ -89,7 +89,8 @@ GEMINI_NAS_PACKAGES:=kmod-md-mod kmod-md-linear kmod-md-multipath \ define Device/dlink-dir-685 DEVICE_TITLE := D-Link DIR-685 Xtreme N Storage Router DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES) \ - kmod-switch-rtl8366rb swconfig + kmod-switch-rtl8366rb swconfig \ + rt2800-pci IMAGES += dir685-image IMAGE/dir685-image := dir685-images endef @@ -119,7 +120,7 @@ TARGET_DEVICES += rut1xx define Device/sq201 DEVICE_TITLE := ITian Square One SQ201 - DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES) rt61-pci-firmware + DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES) rt61-pci endef TARGET_DEVICES += sq201 |