3eedc447b8
The rtl8188eu driver wouldn't build due to Linux kernel API changes. Several fixes for API changes to Linux kernel >=4.11 has been commited to the repository. I have bumped to the latest commit and verified that it builds on master (also successfully built on the 2018.08 branch). Signed-off-by: William Wennerström <william@willeponken.me> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
726 B
Makefile
21 lines
726 B
Makefile
################################################################################
|
|
#
|
|
# 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))
|