diff options
author | Juergen Daubert <jue@jue.li> | 2009-02-20 15:10:55 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2009-02-20 15:10:55 +0100 |
commit | 6057c804c794175a998e6d643c6f56e0ff07789e (patch) | |
tree | ddceced4dafcdd57ffab30a6a7432a7988b6902b /wpa_supplicant | |
parent | 1cec002f917ccc133adf8bf6fcab9f111b2455b8 (diff) | |
download | opt-6057c804c794175a998e6d643c6f56e0ff07789e.tar.gz opt-6057c804c794175a998e6d643c6f56e0ff07789e.tar.xz |
wpa_supplicant: update to 0.6.9
Diffstat (limited to 'wpa_supplicant')
-rw-r--r-- | wpa_supplicant/.md5sum | 2 | ||||
-rw-r--r-- | wpa_supplicant/Pkgfile | 10 | ||||
-rw-r--r-- | wpa_supplicant/README | 11 |
3 files changed, 14 insertions, 9 deletions
diff --git a/wpa_supplicant/.md5sum b/wpa_supplicant/.md5sum index d22bf6bfd..051f7267d 100644 --- a/wpa_supplicant/.md5sum +++ b/wpa_supplicant/.md5sum @@ -1 +1 @@ -ad320af63f735531878e592f1ffd9b06 wpa_supplicant-0.5.11.tar.gz +e933332490e0e5acfef2279457f1070a wpa_supplicant-0.6.8.tar.gz diff --git a/wpa_supplicant/Pkgfile b/wpa_supplicant/Pkgfile index 2b53f9bd3..ff02f80ea 100644 --- a/wpa_supplicant/Pkgfile +++ b/wpa_supplicant/Pkgfile @@ -1,22 +1,22 @@ # Description: User space IEEE 802.1X/WPA supplicant (wireless client) # URL: http://hostap.epitest.fi/wpa_supplicant/ # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de -# Depends on: openssl +# Depends on: openssl ncurses readline name=wpa_supplicant -version=0.5.11 +version=0.6.8 release=1 source=(http://hostap.epitest.fi/releases/$name-$version.tar.gz) build () { - cd $name-$version + cd $name-$version/$name cp defconfig .config echo "CONFIG_READLINE=y" >> .config make install -d $PKG/{usr/sbin,usr/man/man{8,5},etc} install wpa_{cli,passphrase,supplicant} $PKG/usr/sbin - install doc/docbook/*.8 $PKG/usr/man/man8 - install doc/docbook/*.5 $PKG/usr/man/man5 + install doc/docbook/wpa_{background,cli,passphrase,supplicant}.8 $PKG/usr/man/man8 + install doc/docbook/wpa_supplicant.conf.5 $PKG/usr/man/man5 echo -e "ctrl_interface=/var/run/wpa_supplicant\n" > $PKG/etc/wpa.conf chmod 0600 $PKG/etc/wpa.conf } diff --git a/wpa_supplicant/README b/wpa_supplicant/README index 03aabfd00..300fc8bd6 100644 --- a/wpa_supplicant/README +++ b/wpa_supplicant/README @@ -19,21 +19,26 @@ POST-INSTALL See the sample configuration file wpa_supplicant.conf in the sources for a complete description of the available options for wpa_supplicant. - + 2. Change your wlan start script to use wpa_supplicant. - + Following an example for the centrino ipw2100 driver, no need to do anything with iwconfig: /sbin/modprobe ipw2100 /sbin/ifconfig eth1 xxx.xxx.xxx.xxx netmask 255.255.255.xxx /sbin/route add default gw xxx.xxx.xxx.xxx - /usr/sbin/wpa_supplicant -Bw -Dwext -ieth1 -c/etc/wpa.conf + /usr/sbin/wpa_supplicant -B -Dwext -ieth1 -c/etc/wpa.conf Note: the above configuration makes use of the generic wext wpa_supplicant driver (Linux wireless extensions), which is the preferred nowadays. Use this driver for ndiswrapper as well. + PRECAUTION +As off version 0.6.8 the -w option of wpa_supplicant was removed. +See the ChangeLog for more infos. This may cause troubles because +using the -w option was the recommend way to start wpa_supplicant +until version 0.6. |