summaryrefslogtreecommitdiff
path: root/scripts/live
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2008-11-23 18:16:57 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:48:03 +0100
commit505ccfa2ff092ac83e44acc8564dc2f5897456ed (patch)
treee397dfbda00fffd27e3b58bbfab8d57a7d8ca530 /scripts/live
parentb91f0cfcd0e4bd70f6d6eb468b3915fc14ecbf3a (diff)
downloadlive-boot-505ccfa2ff092ac83e44acc8564dc2f5897456ed.tar.gz
live-boot-505ccfa2ff092ac83e44acc8564dc2f5897456ed.zip
Also adding ralink to network device check.
Diffstat (limited to 'scripts/live')
-rwxr-xr-xscripts/live3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/live b/scripts/live
index c0e59a8..8543cf1 100755
--- a/scripts/live
+++ b/scripts/live
@@ -695,7 +695,8 @@ do_netmount ()
# Check if we have a network device at all
if ! ls /sys/class/net/eth0 > /dev/null 2>&1 && \
! ls /sys/class/net/wlan0 > /dev/null 2>&1 && \
- ! ls /sys/class/net/ath0 > /dev/null 2>&1
+ ! ls /sys/class/net/ath0 > /dev/null 2>&1 && \
+ ! ls /sys/class/net/ra0 > /dev/null 2>&1
then
panic "No supported network device found, maybe a non-mainline driver is required."
fi