mac80211: fix check for existing config section from r48426
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48439
This commit is contained in:
		| @@ -9,9 +9,9 @@ lookup_phy() { | ||||
| 	local devpath | ||||
| 	config_get devpath "$device" path | ||||
| 	[ -n "$devpath" ] && { | ||||
| 		for _phy in /sys/devices/$devpath/ieee80211/phy*; do | ||||
| 			case "$(readlink -f /sys/class/ieee80211/$_phy/device)" in | ||||
| 				*$devpath) return 0;; | ||||
| 		for phy in $(ls /sys/class/ieee80211 2>/dev/null); do | ||||
| 			case "$(readlink -f /sys/class/ieee80211/$phy/device)" in | ||||
| 				*$devpath) return;; | ||||
| 			esac | ||||
| 		done | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Felix Fietkau
					Felix Fietkau