diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-06-22 15:35:14 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-06-22 15:35:14 +0000 |
commit | ca07e5557c0d9288fa48c942df1f65d878dc0b2c (patch) | |
tree | 22f3dff190cee6d623e8460adc1d4501e63561ca /src/livecd-tools | |
parent | Fix bug 87673. Option passing for dmraid. dodmraid= on the cmdline. sets u... (diff) | |
download | gentoo-ca07e5557c0d9288fa48c942df1f65d878dc0b2c.tar.gz gentoo-ca07e5557c0d9288fa48c942df1f65d878dc0b2c.tar.bz2 gentoo-ca07e5557c0d9288fa48c942df1f65d878dc0b2c.zip |
Add ath/wlan to listed network devices.
Diffstat (limited to 'src/livecd-tools')
-rw-r--r-- | src/livecd-tools/autoconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/livecd-tools/autoconfig b/src/livecd-tools/autoconfig index 29cbbeb766..9f0080ae91 100644 --- a/src/livecd-tools/autoconfig +++ b/src/livecd-tools/autoconfig @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/livecd-tools/autoconfig,v 1.30 2005/06/09 15:31:23 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/livecd-tools/autoconfig,v 1.31 2005/06/22 15:35:14 wolf31o2 Exp $ DHCP="yes" DETECT="yes" @@ -173,7 +173,7 @@ start() { if [ "${DETECT}" = "yes" ] then - NETDEVICES="$(awk -F: '/eth.:|tr.:/{print $1}' /proc/net/dev 2>/dev/null)" + NETDEVICES="$(awk -F: '/eth.:|tr.:|ath.:|wlan.:/{print $1}' /proc/net/dev 2>/dev/null)" fi if [ -n "${NETDEVICES}" ] |