comparison sources/targets/i686-virtio/settings @ 1437:5a0ca606858b

Get rid of of two old and now unused variables
author Alessio Igor Bogani <alessioigorbogani@gmail.com>
date Mon, 05 Sep 2011 08:49:08 +0200
parents 2878f05277c9
children ba04b2ff8730
comparison
equal deleted inserted replaced
1436:5a6a991c9b3d 1437:5a0ca606858b
25 CONFIG_KVM_GUEST=y 25 CONFIG_KVM_GUEST=y
26 " 26 "
27 27
28 emulator_command() 28 emulator_command()
29 { 29 {
30 echo "if [ \"\$WITH_HDC\"X\"\" != \"X\" ]; then WITH_HDC=\"-drive file=\$HDC,if=virtio\"; fi" 30 echo -n "qemu -nographic -no-reboot -kernel $KERNEL"
31 echo "if [ \"\$WITH_HDB\"X\"\" != \"X\" ]; then WITH_HDB=\"-drive file=\$HDB,if=virtio\"; fi"
32 echo -n "qemu -nographic -no-reboot -kernel $KERNEL \$WITH_HDC \$WITH_HDB"
33 [ "$SYSIMAGE_TYPE" != "initramfs" ] && echo -n " -drive file=$IMAGE,if=virtio" 31 [ "$SYSIMAGE_TYPE" != "initramfs" ] && echo -n " -drive file=$IMAGE,if=virtio"
34 echo -n " -append \"$(kernel_cmdline)\" \$QEMU_EXTRA -net nic,model=virtio -net user" 32 echo -n " -append \"$(kernel_cmdline)\" \$QEMU_EXTRA -net nic,model=virtio -net user"
35 } 33 }