mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
cb3d0250db
the legacy driver was dropped in linux 5.14-rc3: commit d249ff28b1d8 ("intersil: remove obsolete prism54 wireless driver") Quoting Lukas Bulwahn: "p54 replaces prism54 so users should be unaffected." Reported-by: Marius Dinu <m95d+git@psihoexpert.ro> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
26 lines
684 B
Makefile
26 lines
684 B
Makefile
#
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
WIRELESS_MENU:=Wireless Drivers
|
|
|
|
define KernelPackage/net-rtl8192su
|
|
SUBMENU:=$(WIRELESS_MENU)
|
|
TITLE:=RTL8192SU support (staging)
|
|
DEPENDS:=@USB_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-usb-core +rtl8192su-firmware
|
|
KCONFIG:=\
|
|
CONFIG_STAGING=y \
|
|
CONFIG_R8712U
|
|
FILES:=$(LINUX_DIR)/drivers/staging/rtl8712/r8712u.ko
|
|
AUTOLOAD:=$(call AutoProbe,r8712u)
|
|
endef
|
|
|
|
define KernelPackage/net-rtl8192su/description
|
|
Kernel modules for RealTek RTL8712 and RTL81XXSU fullmac support.
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,net-rtl8192su))
|