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 | 	local devpath | ||||||
| 	config_get devpath "$device" path | 	config_get devpath "$device" path | ||||||
| 	[ -n "$devpath" ] && { | 	[ -n "$devpath" ] && { | ||||||
| 		for _phy in /sys/devices/$devpath/ieee80211/phy*; do | 		for phy in $(ls /sys/class/ieee80211 2>/dev/null); do | ||||||
| 			case "$(readlink -f /sys/class/ieee80211/$_phy/device)" in | 			case "$(readlink -f /sys/class/ieee80211/$phy/device)" in | ||||||
| 				*$devpath) return 0;; | 				*$devpath) return;; | ||||||
| 			esac | 			esac | ||||||
| 		done | 		done | ||||||
| 	} | 	} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Felix Fietkau
					Felix Fietkau