diff options
author | John Crispin <blogic@openwrt.org> | 2015-04-09 10:33:16 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-04-09 10:33:16 +0000 |
commit | ff4771e4b65d21f84f40c088001b71315cdeb5b1 (patch) | |
tree | c80aefa75a355cd88bc61e8143b8fa7875c707ee /package/kernel | |
parent | b420275fed917ec879e8112456ea640eb31a514b (diff) | |
download | upstream-ff4771e4b65d21f84f40c088001b71315cdeb5b1.tar.gz upstream-ff4771e4b65d21f84f40c088001b71315cdeb5b1.tar.bz2 upstream-ff4771e4b65d21f84f40c088001b71315cdeb5b1.zip |
kernel: add rtl8723au driver (staging)
- move config symbol to separate package (Why was it there in the first place?)
- 8723au might be used in some USB sticks or on some sunxi boards
compile tested only
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45336 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/linux/modules/wireless.mk | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/wireless.mk b/package/kernel/linux/modules/wireless.mk index 30ba0a87c2..086a401ecc 100644 --- a/package/kernel/linux/modules/wireless.mk +++ b/package/kernel/linux/modules/wireless.mk @@ -114,7 +114,6 @@ define KernelPackage/net-rtl8188eu KCONFIG:=\ CONFIG_STAGING=y \ CONFIG_R8188EU \ - CONFIG_R8723AU \ CONFIG_88EU_AP_MODE=y \ CONFIG_88EU_P2P=n FILES:=$(LINUX_DIR)/drivers/staging/rtl8188eu/r8188eu.ko @@ -127,6 +126,27 @@ endef $(eval $(call KernelPackage,net-rtl8188eu)) + +define KernelPackage/net-rtl8723au + SUBMENU:=$(WIRELESS_MENU) + TITLE:=RTL8723AU support (staging) + DEPENDS:=@!LINUX_3_10 @USB_SUPPORT +@DRIVER_WEXT_SUPPORT +r8188eu-firmware +kmod-usb-core + KCONFIG:=\ + CONFIG_STAGING=y \ + CONFIG_R8723AU \ + CONFIG_8723AU_AP_MODE=y \ + CONFIG_8723AU_BT_COEXIST=y + FILES:=$(LINUX_DIR)/drivers/staging/rtl8723au/r8723au.ko + AUTOLOAD:=$(call AutoProbe,r8723au) +endef + +define KernelPackage/net-rtl8723au/description + Kernel modules for RealTek RTL8723AU support +endef + +$(eval $(call KernelPackage,net-rtl8723au)) + + define KernelPackage/net-rtl8192su SUBMENU:=$(WIRELESS_MENU) TITLE:=RTL8192SU support (staging) |