summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-01 20:49:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-02 14:21:29 +0100
commitc0df2ab7ebac5650e52089ada97e8657f8af3979 (patch)
treecf610788e3220e62ef80e3697298c5b66671a575 /scripts
parent705ec50edda7f7fb8c132238fe3f1477384a470e (diff)
downloadast2050-yocto-poky-c0df2ab7ebac5650e52089ada97e8657f8af3979.zip
ast2050-yocto-poky-c0df2ab7ebac5650e52089ada97e8657f8af3979.tar.gz
scripts: Don't show errors from which ifconfig failing
(From OE-Core rev: 06625096f897235ed85f0d9a1355497f92938454) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-gen-tapdevs2
-rwxr-xr-xscripts/runqemu-ifup2
-rwxr-xr-xscripts/runqemu-internal2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs
index 995e1d5..9f31387 100755
--- a/scripts/runqemu-gen-tapdevs
+++ b/scripts/runqemu-gen-tapdevs
@@ -57,7 +57,7 @@ if [ ! -x "$RUNQEMU_IFUP" ]; then
exit 1
fi
-IFCONFIG=`which ifconfig`
+IFCONFIG=`which ifconfig 2> /dev/null`
if [ -z "$IFCONFIG" ]; then
# Is it ever anywhere else?
IFCONFIG=/sbin/ifconfig
diff --git a/scripts/runqemu-ifup b/scripts/runqemu-ifup
index f9b2f03..987a37a 100755
--- a/scripts/runqemu-ifup
+++ b/scripts/runqemu-ifup
@@ -64,7 +64,7 @@ if [ $STATUS -ne 0 ]; then
exit 1
fi
-IFCONFIG=`which ifconfig`
+IFCONFIG=`which ifconfig 2> /dev/null`
if [ "x$IFCONFIG" = "x" ]; then
# better than nothing...
IFCONFIG=/sbin/ifconfig
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 883fa5b..19f8d3d 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -133,7 +133,7 @@ if [ ! -d "$LOCKDIR" ]; then
chmod 777 $LOCKDIR
fi
-IFCONFIG=`which ifconfig`
+IFCONFIG=`which ifconfig 2> /dev/null`
if [ -z "$IFCONFIG" ]; then
IFCONFIG=/sbin/ifconfig
fi
OpenPOWER on IntegriCloud