mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
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:
parent
0651b22d63
commit
65da7755d9
@ -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/
|
||||
|
@ -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"
|
||||
|
10
package/rtl8189es/Config.in
Normal file
10
package/rtl8189es/Config.in
Normal 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
|
2
package/rtl8189es/rtl8189es.hash
Normal file
2
package/rtl8189es/rtl8189es.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 bf972b6494844c66885dc6846228994fac6075477cf9a7122ffd521e25ac791c rtl8189es-2c8d44ae26485052f39d933a3a132b3ff395803a.tar.gz
|
17
package/rtl8189es/rtl8189es.mk
Normal file
17
package/rtl8189es/rtl8189es.mk
Normal 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))
|
Loading…
Reference in New Issue
Block a user