[oe-commits] Richard Purdie : scripts: Don't show errors from which ifconfig failing

git version control git at git.openembedded.org
Thu Sep 1 19:52:51 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 06625096f897235ed85f0d9a1355497f92938454
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=06625096f897235ed85f0d9a1355497f92938454

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Thu Sep  1 20:49:44 2011 +0100

scripts: Don't show errors from which ifconfig failing

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/runqemu-gen-tapdevs |    2 +-
 scripts/runqemu-ifup        |    2 +-
 scripts/runqemu-internal    |    2 +-
 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





More information about the Openembedded-commits mailing list