This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
config BR2_PACKAGE_RTL8188EU
bool "rtl8188eu"
depends on BR2_LINUX_KERNEL
help
A standalone driver for the RTL8188EU USB Wi-Fi adapter.
This is needed only for Linux kernels before 3.12.
Since 3.12, there is a (staging) driver in mainline, with a
similar codebase.
Make sure your target kernel has the CONFIG_WIRELESS_EXT
config option enabled.
Note: this package needs a firmware loading mechanism to load
the binary blob for the chip to work.
https://github.com/lwfinger/rtl8188eu
comment "rtl8188eu needs a Linux kernel to be built"
depends on !BR2_LINUX_KERNEL

View File

@@ -0,0 +1,2 @@
# Locally computed
sha256 cc872aa0991c044d35abfcc81543bad950c6aae487e37d5a09d1cbf8c4cb3058 rtl8188eu-4b0ecca485b9f11f58670b69aa9f90ecad7da02f.tar.gz

View File

@@ -0,0 +1,20 @@
################################################################################
#
# rtl8188eu
#
################################################################################
RTL8188EU_VERSION = 4b0ecca485b9f11f58670b69aa9f90ecad7da02f
RTL8188EU_SITE = $(call github,lwfinger,rtl8188eu,$(RTL8188EU_VERSION))
RTL8188EU_LICENSE = GPL-2.0, proprietary (rtl8188eufw.bin firmware blob)
RTL8188EU_LICENSE_FILES = COPYING
RTL8188EU_MODULE_MAKE_OPTS = CONFIG_RTL8188EU=m
define RTL8188EU_INSTALL_FIRMWARE
$(INSTALL) -D -m 644 $(@D)/rtl8188eufw.bin \
$(TARGET_DIR)/lib/firmware/rtlwifi/rtl8188eufw.bin
endef
RTL8188EU_POST_INSTALL_TARGET_HOOKS += RTL8188EU_INSTALL_FIRMWARE
$(eval $(kernel-module))
$(eval $(generic-package))