rtl8189es: new package

This package adds the rtl8189es WiFi driver.
   repo: https://github.com/jwrdegoede/rtl8189ES_linux.git
   branch: master

Driver is known to support Realtek RTL8189ES-VB-CG chip.

Signed-off-by: Louis Aussedat <aussedat.louis@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Louis Aussedat 2020-05-11 20:10:51 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 0651b22d63
commit 65da7755d9
5 changed files with 31 additions and 0 deletions

View File

@ -1665,6 +1665,7 @@ F: package/python-dnspython/
F: package/python-future/
F: package/python-huepy/
F: package/python-tqdm/
F: package/rtl8189es/
N: Louis-Paul Cordier <lpdev@cordier.org>
F: package/intel-gmmlib/

View File

@ -554,6 +554,7 @@ endmenu
source "package/rs485conf/Config.in"
source "package/rtc-tools/Config.in"
source "package/rtl8188eu/Config.in"
source "package/rtl8189es/Config.in"
source "package/rtl8189fs/Config.in"
source "package/rtl8723bs/Config.in"
source "package/rtl8723bu/Config.in"

View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_RTL8189ES
bool "rtl8189es"
depends on BR2_LINUX_KERNEL
help
Wireless driver rtl8189es.
https://github.com/jwrdegoede/rtl8189ES_linux.git
comment "rtl8189es needs a Linux kernel to be built"
depends on !BR2_LINUX_KERNEL

View File

@ -0,0 +1,2 @@
# Locally calculated
sha256 bf972b6494844c66885dc6846228994fac6075477cf9a7122ffd521e25ac791c rtl8189es-2c8d44ae26485052f39d933a3a132b3ff395803a.tar.gz

View File

@ -0,0 +1,17 @@
################################################################################
#
# rtl8189es
#
################################################################################
RTL8189ES_VERSION = 2c8d44ae26485052f39d933a3a132b3ff395803a
RTL8189ES_SITE = $(call github,jwrdegoede,rtl8189ES_linux,$(RTL8189ES_VERSION))
RTL8189ES_LICENSE = GPL-2.0
RTL8189ES_MODULE_MAKE_OPTS = \
CONFIG_RTL8189ES=m \
KVER=$(LINUX_VERSION_PROBED) \
KSRC=$(LINUX_DIR)
$(eval $(kernel-module))
$(eval $(generic-package))