package/rtl8723ds: new package
This package adds a driver for Realtek RTL8723DS wifi chip. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
4141e017e1
commit
dd018f78de
@ -181,6 +181,7 @@ F: package/python-web2py/
|
||||
F: package/qt5/qt5coap/
|
||||
F: package/qt5/qt5knx/
|
||||
F: package/qt5/qt5mqtt/
|
||||
F: package/rtl8723ds/
|
||||
F: package/sam-ba/
|
||||
F: package/sshguard/
|
||||
F: package/sunwait/
|
||||
|
@ -566,6 +566,7 @@ endmenu
|
||||
source "package/rtl8189fs/Config.in"
|
||||
source "package/rtl8723bs/Config.in"
|
||||
source "package/rtl8723bu/Config.in"
|
||||
source "package/rtl8723ds/Config.in"
|
||||
source "package/rtl8812au-aircrack-ng/Config.in"
|
||||
source "package/rtl8821au/Config.in"
|
||||
source "package/sane-backends/Config.in"
|
||||
|
10
package/rtl8723ds/Config.in
Normal file
10
package/rtl8723ds/Config.in
Normal file
@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_RTL8723DS
|
||||
bool "rtl8723ds"
|
||||
depends on BR2_LINUX_KERNEL
|
||||
help
|
||||
rtl8723bs wifi driver
|
||||
|
||||
https://github.com/lwfinger/rtl8723ds
|
||||
|
||||
comment "rtl8723ds needs a Linux kernel to be built"
|
||||
depends on !BR2_LINUX_KERNEL
|
23
package/rtl8723ds/rtl8723ds.mk
Normal file
23
package/rtl8723ds/rtl8723ds.mk
Normal file
@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# rtl8723ds
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RTL8723DS_VERSION = 76146e85847beb2427b1d4958fa275822f2b04ab
|
||||
RTL8723DS_SITE = $(call github,lwfinger,rtl8723ds,$(RTL8723DS_VERSION))
|
||||
RTL8723DS_LICENSE = GPL-2.0
|
||||
|
||||
RTL8723DS_MODULE_MAKE_OPTS = \
|
||||
CONFIG_RTL8723DS=m \
|
||||
KVER=$(LINUX_VERSION_PROBED) \
|
||||
KSRC=$(LINUX_DIR)
|
||||
|
||||
define RTL8723DS_LINUX_CONFIG_FIXUPS
|
||||
$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
|
||||
$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
|
||||
$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
|
||||
endef
|
||||
|
||||
$(eval $(kernel-module))
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user