scripts/runqemu improvements:

* Try harder to find ifconfig
 * Error out if the environment isn't correct
 * Tell the user we're running sudo


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@989 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2006-11-30 11:16:21 +00:00
parent 6ee267a55e
commit d35635aff2
2 changed files with 17 additions and 1 deletions

View File

@ -1,2 +1,9 @@
#!/bin/sh
ifconfig tap0 192.168.7.1
IFCONFIG=`which ifconfig`
if [ "x$IFCONFIG" == "x" ]; then
# better than nothing...
IFCONFIG=/sbin/ifconfig
fi
$IFCONFIG tap0 192.168.7.1

View File

@ -1,5 +1,10 @@
#!/bin/sh
if [ "x$BUILDDIR" == "x" ]; then
echo "You need to source poky-init-build-env before running this script"
exit 1
fi
PATH=$BUILDDIR/tmp/staging/$BUILD_SYS/bin:$PATH
KERNEL_NETWORK_CMD="ip=192.168.7.2::192.168.7.1:255.255.255.0"
@ -40,10 +45,12 @@ if [ "$MACHINE" == "qemuarm" ]; then
if [ "x$HDIMAGE" == "x" ]; then
HDIMAGE=$BUILDDIR/tmp/deploy/images/oh-image-pda-qemuarm.ext2
fi
echo "Running $QEMU using sudo..."
sudo $QEMU -kernel $ZIMAGE -append "root=/dev/sda mem=$QEMU_MEMORY" $QEMU_NETWORK_CMD -M versatilepb -hda $HDIMAGE -usb -usbdevice wacom-tablet
fi
if [ "$TYPE" == "nfs" ]; then
dd if=/dev/zero of=/tmp/blank bs=1024 count=8192
echo "Running $QEMU using sudo..."
sudo $QEMU -kernel $1 -append "root=/dev/nfs nfsroot=192.168.7.1:/srv/nfs/qemuarm rw $KERNEL_NETWORK_CMD" $QEMU_NETWORK_CMD -M versatilepb -hda /tmp/blank
rm /tmp/blank
fi
@ -61,10 +68,12 @@ if [ "$MACHINE" == "qemux86" ]; then
HDIMAGE=$BUILDDIR/tmp/deploy/images/oh-image-pda-qemux86.ext2
fi
# video=vesafb:1024x768-32@86
echo "Running $QEMU using sudo..."
sudo $QEMU -std-vga -kernel $ZIMAGE -append "root=/dev/hda mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD" $QEMU_NETWORK_CMD -hda $HDIMAGE -usb -usbdevice wacom-tablet
fi
if [ "$TYPE" == "nfs" ]; then
dd if=/dev/zero of=/tmp/blank bs=1024 count=8192
echo "Running $QEMU using sudo..."
sudo $QEMU -std-vga -kernel $1 -append "root=/dev/nfs nfsroot=192.168.7.1:/srv/nfs/qemux86 rw $KERNEL_NETWORK_CMD" $QEMU_NETWORK_CMD -hda /tmp/blank
rm /tmp/blank
fi