diff options
author | Richard Purdie <richard@openedhand.com> | 2007-01-16 13:49:34 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-01-16 13:49:34 +0000 |
commit | 990788b29580f8689933b5af21dc9cb62c726b0e (patch) | |
tree | 58b7cb274830e8f615b78dbd7ab7452276a1ae9a /scripts/poky-qemu-ifup | |
parent | 6531611d9a02ebee72229ee475601a5717222e56 (diff) | |
download | ast2050-yocto-poky-990788b29580f8689933b5af21dc9cb62c726b0e.zip ast2050-yocto-poky-990788b29580f8689933b5af21dc9cb62c726b0e.tar.gz |
scripts: Rename scripts, update README
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1146 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-qemu-ifup')
-rwxr-xr-x | scripts/poky-qemu-ifup | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/poky-qemu-ifup b/scripts/poky-qemu-ifup new file mode 100755 index 0000000..af081fb --- /dev/null +++ b/scripts/poky-qemu-ifup @@ -0,0 +1,9 @@ +#!/bin/sh + +IFCONFIG=`which ifconfig` +if [ "x$IFCONFIG" = "x" ]; then + # better than nothing... + IFCONFIG=/sbin/ifconfig +fi + +$IFCONFIG tap0 192.168.7.1 |