From ca752a5a2dcd097410e8d5e8df05545751b2c989 Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Sat, 5 Dec 2009 19:25:39 +0000 Subject: Support phy80211, fixes #209. --- net/ifconfig.sh.Linux.in | 3 ++- net/iproute2.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net/ifconfig.sh.Linux.in b/net/ifconfig.sh.Linux.in index ae68b2b..85fc6ea 100644 --- a/net/ifconfig.sh.Linux.in +++ b/net/ifconfig.sh.Linux.in @@ -42,7 +42,8 @@ _ifindex() _is_wireless() { # Support new sysfs layout - [ -d /sys/class/net/"${IFACE}"/wireless ] && return 0 + [ -d /sys/class/net/"${IFACE}"/wireless -o \ + -d /sys/class/net/"${IFACE}"/phy80211 ] && return 0 [ ! -e /proc/net/wireless ] && return 1 grep -Eq "^[[:space:]]*${IFACE}:" /proc/net/wireless diff --git a/net/iproute2.sh b/net/iproute2.sh index d983c9b..0df8eef 100644 --- a/net/iproute2.sh +++ b/net/iproute2.sh @@ -43,7 +43,8 @@ _ifindex() _is_wireless() { # Support new sysfs layout - [ -d /sys/class/net/"${IFACE}"/wireless ] && return 0 + [ -d /sys/class/net/"${IFACE}"/wireless -o \ + -d /sys/class/net/"${IFACE}"/phy80211 ] && return 0 [ ! -e /proc/net/wireless ] && return 1 grep -Eq "^[[:space:]]*${IFACE}:" /proc/net/wireless -- cgit v1.2.3