mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-01 05:25:21 +00:00
5a38226a47
Driver Bug Fixes: ----------------- 1. WSW-19892: Driver compilation errors on older kernel version 2. WSW-19638: Enable RF Test Mode support for 9098 PCIE and SDIO 3. WCSWREL-370: oob irq request fail on i.MX93 9x9 qsb board 4. WSW-21756: WLAN Driver hang observed during WiFi connect/disconnect 5. WCSWREL-362: merge the L6.0.0 build errors fix patches 6. WSW-22054: STA CSA event is not propagated to cfg80211 7. WSW-21873: STA does not send probes after switching from DFS channel 8. WSW-21530: UDP Tx not able to send ARP when high bandwidth is used 9. WSW-21541: WFA Pre-Cert Channel switch test is failing 10. WSW-21072: AP stops sending CTS-to-Self in mcast Tx after issue mc_aggr_cfg Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
22 lines
395 B
Bash
22 lines
395 B
Bash
#! /bin/bash
|
|
ifconfig mlan0 down
|
|
ifconfig uap0 down
|
|
ifconfig mmlan0 down
|
|
ifconfig muap0 down
|
|
ifconfig uap1 down
|
|
ifconfig muap1 down
|
|
ifconfig wfd0 down
|
|
ifconfig wfd1 down
|
|
ifconfig mwfd0 down
|
|
ifconfig mwfd1 down
|
|
for (( i = 0; i <= 30; i++ ))
|
|
do
|
|
rmmod moal 2> /dev/null
|
|
lsmod 2>&1 | grep moal > /dev/null
|
|
if [ ! $? -eq 0 ]; then
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
rmmod mlan
|
|
sleep 5
|