merge r13075-13076 to 8.09
authorFelix Fietkau <nbd@openwrt.org>
Wed, 29 Oct 2008 16:27:06 +0000 (16:27 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 29 Oct 2008 16:27:06 +0000 (16:27 +0000)
SVN-Revision: 13077

package/hostapd/files/hostapd.sh
package/hostapd/patches/100-madwifi_fix.patch [new file with mode: 0644]

index 7a67cec949c03f72ac0cae27b7c57a2a6088f85a..1159c3b15646d8fadb354d473f13c1487ad9e51b 100644 (file)
@@ -79,7 +79,10 @@ hostapd_setup_vif() {
                11a) agmode=a;;
                11b) agmode=b;;
                11g) agmode=g;;
-               *) agmode=;;
+               *)
+                       agmode=
+                       [ "$channel" -gt 14 ] && agmode=a
+               ;;
        esac
        cat > /var/run/hostapd-$ifname.conf <<EOF
 driver=$driver
diff --git a/package/hostapd/patches/100-madwifi_fix.patch b/package/hostapd/patches/100-madwifi_fix.patch
new file mode 100644 (file)
index 0000000..45e9023
--- /dev/null
@@ -0,0 +1,27 @@
+--- a/hostapd/driver_madwifi.c
++++ b/hostapd/driver_madwifi.c
+@@ -298,6 +298,7 @@ madwifi_set_iface_flags(void *priv, int 
+ {
+       struct madwifi_driver_data *drv = priv;
+       struct ifreq ifr;
++      short flags;
+       wpa_printf(MSG_DEBUG, "%s: dev_up=%d", __func__, dev_up);
+@@ -312,10 +313,14 @@ madwifi_set_iface_flags(void *priv, int 
+               return -1;
+       }
++      flags = ifr.ifr_flags;
+       if (dev_up)
+-              ifr.ifr_flags |= IFF_UP;
++              flags |= IFF_UP;
+       else
+-              ifr.ifr_flags &= ~IFF_UP;
++              flags &= ~IFF_UP;
++
++      if (flags == ifr.ifr_flags)
++              return 0;
+       if (ioctl(drv->ioctl_sock, SIOCSIFFLAGS, &ifr) != 0) {
+               perror("ioctl[SIOCSIFFLAGS]");