package/rtl8192eu: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2022-10-14 14:09:18 -06:00 committed by Thomas Petazzoni
parent 146e5a1b21
commit ad62fa3acb
5 changed files with 40 additions and 0 deletions

View File

@ -1411,6 +1411,7 @@ F: package/python-typing-inspect/
F: package/python-weasyprint/
F: package/python-yarl/
F: package/python-zopfli/
F: package/rtl8192eu/
F: package/serd/
F: package/sord/
F: package/sratom/

View File

@ -579,6 +579,7 @@ endmenu
source "package/rtl8188eu/Config.in"
source "package/rtl8189es/Config.in"
source "package/rtl8189fs/Config.in"
source "package/rtl8192eu/Config.in"
source "package/rtl8723bu/Config.in"
source "package/rtl8723ds/Config.in"
source "package/rtl8812au-aircrack-ng/Config.in"

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_RTL8192EU
bool "rtl8192eu"
depends on BR2_LINUX_KERNEL
help
A standalone driver for the RTL8192EU USB Wi-Fi adapter.
Make sure your target kernel has the CONFIG_WIRELESS_EXT
config option enabled.
https://github.com/clnhub/rtl8192eu-linux
comment "rtl8192eu needs a Linux kernel to be built"
depends on !BR2_LINUX_KERNEL

View File

@ -0,0 +1,2 @@
# Locally computed
sha256 75b523ff1cda54d7cd8734a043b2d145231ab81fcc13d3edcd80e00d59201409 rtl8192eu-1e15b6d451731bc4d3ffd587194dc4bd0f286ac0.tar.gz

View File

@ -0,0 +1,23 @@
################################################################################
#
# rtl8192eu
#
################################################################################
RTL8192EU_VERSION = 1e15b6d451731bc4d3ffd587194dc4bd0f286ac0
RTL8192EU_SITE = $(call github,clnhub,rtl8192eu-linux,$(RTL8192EU_VERSION))
RTL8192EU_LICENSE = GPL-2.0
RTL8192EU_MODULE_MAKE_OPTS = \
CONFIG_RTL8192EU=m \
USER_EXTRA_CFLAGS="-Wno-error"
define RTL8192EU_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
$(call KCONFIG_ENABLE_OPT,CONFIG_USB_SUPPORT)
$(call KCONFIG_ENABLE_OPT,CONFIG_USB)
endef
$(eval $(kernel-module))
$(eval $(generic-package))