package/rtl8723bs: drop package
Drop package as it doesn't build with latest kernel and project is not
maintained anymore: code has been removed in 2017 as driver is available
in the linux-next tree (cf.
3bb1d33ad9
):
In file included from /home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/drv_types.h:25,
from /home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./core/rtw_cmd.c:17:
/home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/autoconf.h:27:2: error: #error CONFIG_WIRELESS_EXT needs to be enabled for this driver to work
27 | #error CONFIG_WIRELESS_EXT needs to be enabled for this driver to work
| ^~~~~
In file included from /home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/osdep_service.h:23,
from /home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/drv_types.h:27,
from /home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./core/rtw_cmd.c:17:
/home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/osdep_service_linux.h: In function ‘_init_timer’:
/home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/osdep_service_linux.h:97:8: error: ‘_timer’ {aka ‘struct timer_list’} has no member named ‘data’
97 | ptimer->data = (unsigned long)cntx;
| ^~
/home/autobuild/autobuild/instance-3/output-1/build/rtl8723bs-11ab92d8ccd71c80f0102828366b14ef6b676fb2/./include/osdep_service_linux.h:98:2: error: implicit declaration of function ‘init_timer’; did you mean ‘_init_timer’? [-Werror=implicit-function-declaration]
98 | init_timer(ptimer);
| ^~~~~~~~~~
| _init_timer
Fixes:
- http://autobuild.buildroot.org/results/7a473e83d4a3d1e2228f4ee1282e85697de4ae5d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
570aa42559
commit
7763ba7007
@ -164,6 +164,14 @@ config BR2_nds32
|
||||
|
||||
comment "Legacy options removed in 2022.05"
|
||||
|
||||
config BR2_PACKAGE_RTL8723BS
|
||||
bool "rtl8723bs removed"
|
||||
select BR2_LEGACY
|
||||
help
|
||||
Package was removed because it is not compatible with latest
|
||||
kernels and is not maintained anymore: code has been removed
|
||||
in 2017 as driver is available in the linux-next tree.
|
||||
|
||||
config BR2_PACKAGE_KTAP
|
||||
bool "ktap removed"
|
||||
select BR2_LEGACY
|
||||
|
@ -834,7 +834,6 @@ F: package/jimtcl/
|
||||
F: package/mimic/
|
||||
F: package/nodm/
|
||||
F: package/openbox/
|
||||
F: package/rtl8723bs/
|
||||
F: package/supertuxkart/
|
||||
|
||||
N: Fabio Estevam <festevam@gmail.com>
|
||||
|
@ -563,7 +563,6 @@ endmenu
|
||||
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"
|
||||
source "package/rtl8723ds/Config.in"
|
||||
source "package/rtl8812au-aircrack-ng/Config.in"
|
||||
|
@ -1,41 +0,0 @@
|
||||
From 9f70428f506ac9d5af325004c01c59c62669d7eb Mon Sep 17 00:00:00 2001
|
||||
From: Jason Abele <jason@jasonabeleconsulting.com>
|
||||
Date: Sat, 15 Aug 2015 18:20:54 -0700
|
||||
Subject: [PATCH] rtl8723bs: add debug level modparam
|
||||
|
||||
For ease of controlling debug printk verbosity, add a module parameter
|
||||
which sets debug level at module load.
|
||||
|
||||
Signed-off-by: Jason Abele <jason@jasonabeleconsulting.com>
|
||||
[Fixed to apply on current version]
|
||||
Signed-off-by: Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
|
||||
---
|
||||
os_dep/os_intfs.c | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/os_dep/os_intfs.c b/os_dep/os_intfs.c
|
||||
index b30c2a0..eeb8946 100644
|
||||
--- a/os_dep/os_intfs.c
|
||||
+++ b/os_dep/os_intfs.c
|
||||
@@ -231,6 +231,10 @@ module_param(rtw_decrypt_phy_file, int, 0644);
|
||||
MODULE_PARM_DESC(rtw_decrypt_phy_file,"Enable Decrypt PHY File");
|
||||
#endif
|
||||
|
||||
+int rtw_debug_level = _drv_err_;
|
||||
+module_param(rtw_debug_level, int, 0644);
|
||||
+MODULE_PARM_DESC(rtw_debug_level,"Set Driver Debug Verbosity");
|
||||
+
|
||||
int _netdev_open(struct net_device *pnetdev);
|
||||
int netdev_open (struct net_device *pnetdev);
|
||||
static int netdev_close (struct net_device *pnetdev);
|
||||
@@ -347,6 +351,7 @@ static uint loadparam(struct adapter *padapter, _nic_hdl pnetdev)
|
||||
registry_par->qos_opt_enable = (u8)rtw_qos_opt_enable;
|
||||
|
||||
registry_par->hiq_filter = (u8)rtw_hiq_filter;
|
||||
+ GlobalDebugLevel = rtw_debug_level;
|
||||
return status;
|
||||
}
|
||||
|
||||
--
|
||||
2.8.3
|
||||
|
@ -1,10 +0,0 @@
|
||||
config BR2_PACKAGE_RTL8723BS
|
||||
bool "rtl8723bs"
|
||||
depends on BR2_LINUX_KERNEL
|
||||
help
|
||||
rtl8723bs wifi driver
|
||||
|
||||
https://github.com/hadess/rtl8723bs
|
||||
|
||||
comment "rtl8723bs needs a Linux kernel to be built"
|
||||
depends on !BR2_LINUX_KERNEL
|
@ -1,27 +0,0 @@
|
||||
################################################################################
|
||||
#
|
||||
# rtl8723bs
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RTL8723BS_VERSION = 11ab92d8ccd71c80f0102828366b14ef6b676fb2
|
||||
RTL8723BS_SITE = $(call github,hadess,rtl8723bs,$(RTL8723BS_VERSION))
|
||||
RTL8723BS_LICENSE = GPL-2.0, proprietary (*.bin firmware blobs)
|
||||
|
||||
RTL8723BS_MODULE_MAKE_OPTS = \
|
||||
CONFIG_RTL8723BS=m \
|
||||
KVER=$(LINUX_VERSION_PROBED) \
|
||||
KSRC=$(LINUX_DIR)
|
||||
|
||||
RTL8723BS_BINS = rtl8723bs_ap_wowlan.bin rtl8723bs_wowlan.bin \
|
||||
rtl8723bs_bt.bin rtl8723bs_nic.bin
|
||||
|
||||
define RTL8723BS_INSTALL_FIRMWARE
|
||||
$(foreach bin, $(RTL8723BS_BINS), \
|
||||
$(INSTALL) -D -m 644 $(@D)/$(bin) $(TARGET_DIR)/lib/firmware/rtlwifi/$(bin)
|
||||
)
|
||||
endef
|
||||
RTL8723BS_POST_INSTALL_TARGET_HOOKS += RTL8723BS_INSTALL_FIRMWARE
|
||||
|
||||
$(eval $(kernel-module))
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user