From the kernel log, we are using PCIe port 1 and 2. dmesg: ``` [ 0.963526] mt7621-pci 1e140000.pcie: pcie0 no card, disable it (RST & CLK) [ 0.970432] mt7621-pci 1e140000.pcie: PCIE1 enabled [ 0.975312] mt7621-pci 1e140000.pcie: PCIE2 enabled [ 1.071442] pci 0000:01:00.0: [14c3:7662] type 00 class 0x028000 [ 1.130382] pci 0000:02:00.0: [14c3:7603] type 00 class 0x028000 ``` Fixes: https://github.com/openwrt/openwrt/issues/16000 Signed-off-by: Shiji Yang <yangshiji66@qq.com> Link: https://github.com/openwrt/openwrt/pull/16009 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
76 lines
1.8 KiB
Bash
76 lines
1.8 KiB
Bash
#!/bin/sh
|
|
|
|
# This must run before 10-wifi-detect
|
|
|
|
|
|
[ "${ACTION}" = "add" ] || return
|
|
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
|
check_radio()
|
|
{
|
|
local cfg="$1" to="$2"
|
|
|
|
config_get path "$cfg" path
|
|
|
|
[ "$path" = "$to" ] && PATH_EXISTS=true
|
|
}
|
|
|
|
do_migrate_radio()
|
|
{
|
|
local cfg="$1" from="$2" to="$3"
|
|
|
|
config_get path "$cfg" path
|
|
|
|
[ "$path" = "$from" ] || return
|
|
|
|
uci set "wireless.${cfg}.path=${to}"
|
|
WIRELESS_CHANGED=true
|
|
|
|
logger -t wifi-migrate "Updated path of wireless.${cfg} from '${from}' to '${to}'"
|
|
}
|
|
|
|
migrate_radio()
|
|
{
|
|
local from="$1" to="$2"
|
|
|
|
config_load wireless
|
|
|
|
# Check if there is already a section with the target path: In this case, the system
|
|
# was already upgraded to a version without this migration script before; better bail out,
|
|
# as we can't be sure we don't break more than we fix.
|
|
PATH_EXISTS=false
|
|
config_foreach check_radio wifi-device "$to"
|
|
$PATH_EXISTS && return
|
|
|
|
config_foreach do_migrate_radio wifi-device "$from" "$to"
|
|
}
|
|
|
|
|
|
WIRELESS_CHANGED=false
|
|
|
|
case "$(board_name)" in
|
|
arcadyan,we420223-99|\
|
|
beeline,smartbox-flash|\
|
|
mts,wg430223)
|
|
migrate_radio '1e140000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0' '1e140000.pcie/pci0000:00/0000:00:01.0/0000:01:00.0'
|
|
migrate_radio '1e140000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0+1' '1e140000.pcie/pci0000:00/0000:00:01.0/0000:01:00.0+1'
|
|
;;
|
|
netgear,r6220|\
|
|
netgear,wac104|\
|
|
netgear,wndr3700-v5)
|
|
migrate_radio '1e140000.pcie/pci0000:00/0000:00:01.0/0000:02:00.0' '1e140000.pcie/pci0000:00/0000:00:02.0/0000:02:00.0'
|
|
;;
|
|
zbtlink,zbt-we1326|\
|
|
zbtlink,zbt-we3526)
|
|
migrate_radio '1e140000.pcie/pci0000:00/0000:00:01.0/0000:02:00.0' '1e140000.pcie/pci0000:00/0000:00:02.0/0000:02:00.0'
|
|
migrate_radio '1e140000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0' '1e140000.pcie/pci0000:00/0000:00:01.0/0000:01:00.0'
|
|
;;
|
|
|
|
esac
|
|
|
|
$WIRELESS_CHANGED && uci commit wireless
|
|
|
|
exit 0
|