mirror of
https://github.com/armbian/build.git
synced 2025-08-09 12:46:58 +02:00
* Add new patches from the tag orange-pi-5.16-20220205-1958
* Remove mutually exclusive patches
* Add, sort next patches for series armbian 5.16
* Add next armbian patches to series.conf
* Swich BRANCH for sunxi: legacy=5.10 current=5.15 edge=5.16
Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
* Add upstream megous 5.16 patch to 5.15
* Add wifi rtl8723cs patches to series armbian
* Add a new one, remove old patches that are already in the kernel
* Add redesigned patches for 5.15 to the armbian series
* Remove unused patches
* Finish line
* The old rtl8723cs driver is disabled by default.
* Enable the old rtl8723cs driver by default.
* Comment enable\disable the old driver rtl8723cs-old
* Revert "Swich BRANCH for sunxi: legacy=5.10 current=5.15 edge=5.16"
This reverts commit aad1e92b5e
.
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 2b9c9844aedd237394cfc692dc27f17594660dd4 Mon Sep 17 00:00:00 2001
|
|
From: The-going <48602507+The-going@users.noreply.github.com>
|
|
Date: Thu, 3 Feb 2022 11:32:27 +0300
|
|
Subject: [PATCH 1/9] drv:net:wireless:realtek Add build rtl8723cs
|
|
|
|
---
|
|
drivers/net/wireless/realtek/Kconfig | 1 +
|
|
drivers/net/wireless/realtek/Makefile | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/drivers/net/wireless/realtek/Kconfig b/drivers/net/wireless/realtek/Kconfig
|
|
index 474843277..8417da93a 100644
|
|
--- a/drivers/net/wireless/realtek/Kconfig
|
|
+++ b/drivers/net/wireless/realtek/Kconfig
|
|
@@ -15,6 +15,7 @@ if WLAN_VENDOR_REALTEK
|
|
source "drivers/net/wireless/realtek/rtl818x/Kconfig"
|
|
source "drivers/net/wireless/realtek/rtlwifi/Kconfig"
|
|
source "drivers/net/wireless/realtek/rtl8xxxu/Kconfig"
|
|
+source "drivers/net/wireless/realtek/rtl8723cs/Kconfig"
|
|
source "drivers/net/wireless/realtek/rtw88/Kconfig"
|
|
|
|
endif # WLAN_VENDOR_REALTEK
|
|
diff --git a/drivers/net/wireless/realtek/Makefile b/drivers/net/wireless/realtek/Makefile
|
|
index 888b5d594..4a23e3f2a 100644
|
|
--- a/drivers/net/wireless/realtek/Makefile
|
|
+++ b/drivers/net/wireless/realtek/Makefile
|
|
@@ -5,6 +5,7 @@
|
|
|
|
obj-$(CONFIG_RTL8180) += rtl818x/
|
|
obj-$(CONFIG_RTL8187) += rtl818x/
|
|
+obj-$(CONFIG_RTL8723CS) += rtl8723cs/
|
|
obj-$(CONFIG_RTLWIFI) += rtlwifi/
|
|
obj-$(CONFIG_RTL8XXXU) += rtl8xxxu/
|
|
obj-$(CONFIG_RTW88) += rtw88/
|
|
--
|
|
2.34.1
|
|
|
|
|