sysdrv/drv_ko/wifi/insmod_wifi.sh : Add support for identifying rtl8723bs

Signed-off-by: eng29 <eng29@luckfox.com>
This commit is contained in:
eng29 2025-06-06 17:58:16 +08:00
parent 6e4b7fc2f5
commit c181d121a2
1 changed files with 9 additions and 0 deletions

View File

@ -44,6 +44,15 @@ if [ $? -eq 0 ]; then
insmod bcmdhd.ko
fi
#rtl8723bs
cat /sys/bus/sdio/devices/*/uevent | grep "024C:B723"
if [ $? -eq 0 ]; then
insmod libarc4.ko
insmod cfg80211.ko
insmod mac80211.ko
insmod r8723bs.ko
fi
#rtl8723ds
cat /sys/bus/sdio/devices/*/uevent | grep "024C:D723"
if [ $? -eq 0 ]; then