summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2015-01-27 09:49:07 -0600
committerDan Williams <dcbw@redhat.com>2015-01-28 15:14:51 -0600
commit3264b8d4556bb775de7f31f48faf89a8e7d5d526 (patch)
tree4e1718907b94e588f59dba539a0aaf9fb8b03e25
parentda4279e5d7f31631958bb45faedb310a8d7344c4 (diff)
downloadNetworkManager-3264b8d4556bb775de7f31f48faf89a8e7d5d526.tar.gz
live-vm: change vertical resolution to 640
Some monitors (laptops) can't fit 768.
-rwxr-xr-xcontrib/fedora/nm-live-vm/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/fedora/nm-live-vm/run.sh b/contrib/fedora/nm-live-vm/run.sh
index 809b3b59b1..97371bdd8a 100755
--- a/contrib/fedora/nm-live-vm/run.sh
+++ b/contrib/fedora/nm-live-vm/run.sh
@@ -24,7 +24,7 @@ if [ "$OS" == "Red Hat Enterprise Linux" ]; then
PATH=$PATH:/usr/libexec
- qemu-kvm -vnc :0 -m $MEMORY $NET_OPTIONS -kernel vmlinuz -append "video=1024x768 rootfstype=ramfs" -initrd initramfs.img &
+ qemu-kvm -vnc :0 -m $MEMORY $NET_OPTIONS -kernel vmlinuz -append "video=1024x640 rootfstype=ramfs" -initrd initramfs.img &
sleep 1
vncviewer localhost
@@ -39,5 +39,5 @@ else
QEMU="qemu-system-$ARCH -enable-kvm"
}
- $QEMU -m $MEMORY -net nic $NET_OPTIONS -virtfs "local,path=$SDIR,mount_tag=host0,security_model=none,id=host0" -device "virtio-9p-pci,fsdev=host0,mount_tag=host0" -kernel vmlinuz -append "video=1024x768 rootfstype=ramfs" -initrd initramfs.img
+ $QEMU -m $MEMORY -net nic $NET_OPTIONS -virtfs "local,path=$SDIR,mount_tag=host0,security_model=none,id=host0" -device "virtio-9p-pci,fsdev=host0,mount_tag=host0" -kernel vmlinuz -append "video=1024x640 rootfstype=ramfs" -initrd initramfs.img
fi