summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-09-10 10:43:06 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-10 10:45:55 +0100
commitc4ff5f303882a4dfbf37ddf835755b5df5fe881e (patch)
treec09df953fd83cd03ddd1246bf5eef59ecb4cb4ef /scripts
parent8e43883f97f76857bd4cc85de544a09c6cceb24e (diff)
downloadpoky-c4ff5f303882a4dfbf37ddf835755b5df5fe881e.tar.gz
scripts/poky-qemu-ifup: Ensure the host has a route to it
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-qemu-ifup9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/poky-qemu-ifup b/scripts/poky-qemu-ifup
index e248a27106..5ae6c6aefb 100755
--- a/scripts/poky-qemu-ifup
+++ b/scripts/poky-qemu-ifup
@@ -92,9 +92,18 @@ if [ "x$IFCONFIG" = "x" ]; then
92 IFCONFIG=/sbin/ifconfig 92 IFCONFIG=/sbin/ifconfig
93fi 93fi
94 94
95ROUTE=`which route`
96if [ "x$ROUTE" = "x" ]; then
97 # better than nothing...
98 ROUTE=/sbin/route
99fi
100
95n=$[ (`echo $TAP | sed 's/tap//'` * 2) + 1 ] 101n=$[ (`echo $TAP | sed 's/tap//'` * 2) + 1 ]
96$IFCONFIG $TAP 192.168.7.$n 102$IFCONFIG $TAP 192.168.7.$n
97 103
104dest=$[ (`echo $TAP | sed 's/tap//'` * 2) + 2 ]
105$ROUTE add -host 192.168.7.$dest $TAP
106
98# setup NAT for tap0 interface to have internet access in QEMU 107# setup NAT for tap0 interface to have internet access in QEMU
99IPTABLES=`which iptables` 108IPTABLES=`which iptables`
100if [ "x$IPTABLES" = "x" ]; then 109if [ "x$IPTABLES" = "x" ]; then