initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+19
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
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 b2b06c842bccd730d68a26b1c1b5a24f18373401e907147bf5e775fa42a36bbb rtl8188eu-60cb0b5a3cfc95e3f2e6fc294a28d987096b0559.tar.gz
sha256 af8067302947c01fd9eee72befa54c7e3ef8a48fecde7fd71277f2290b2bf0f7 COPYING
+20
View File
@@ -0,0 +1,20 @@
################################################################################
#
# rtl8188eu
#
################################################################################
RTL8188EU_VERSION = 60cb0b5a3cfc95e3f2e6fc294a28d987096b0559
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))