diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-05-12 22:42:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-16 00:05:07 +0300 |
commit | c19e5d19ae8e6e6eb9b37549d80765b8315f79a4 (patch) | |
tree | 9e1b49d31bb4f9bf3e0f87d783405ea2ff99a896 /scripts/runqemu-internal | |
parent | 681bcd2783e100dd2882273f28f16ef118161e89 (diff) | |
download | openembedded-core-c19e5d19ae8e6e6eb9b37549d80765b8315f79a4.tar.gz openembedded-core-c19e5d19ae8e6e6eb9b37549d80765b8315f79a4.tar.bz2 openembedded-core-c19e5d19ae8e6e6eb9b37549d80765b8315f79a4.zip |
runqemu: Replace use of ifconfig with ip
ifconfig and its ilk (net-tools package) is deprecated in favour of iproute2 package
and is now removed by many distro's e.g. Archlinux. So we replace ifconfig with ip utility
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-x | scripts/runqemu-internal | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 3bd0a09d8e..3c5282d89a 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -139,16 +139,16 @@ if [ ! -d "$LOCKDIR" ]; then chmod 777 $LOCKDIR fi -IFCONFIG=`which ifconfig 2> /dev/null` +IFCONFIG=`which ip 2> /dev/null` if [ -z "$IFCONFIG" ]; then - IFCONFIG=/sbin/ifconfig + IFCONFIG=/sbin/ip fi if [ ! -x "$IFCONFIG" ]; then echo "$IFCONFIG cannot be executed" exit 1 fi -POSSIBLE=`$IFCONFIG -a | grep '^tap' | awk '{print $1}' | sed s/://` +POSSIBLE=`$IFCONFIG link | grep 'tap' | awk '{print $2}' | sed s/://` TAP="" LOCKFILE="" for tap in $POSSIBLE; do |