diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-06-11 15:57:03 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-06-11 15:57:03 -0700 |
commit | bc3053551243b835a3ee89250306d58d9213eb1c (patch) | |
tree | c44a06d23b55657802c0b003c4bac78411e781ce /scripts/install-system | |
parent | b4b2864a93b38e3e900164564f262b0375fcec24 (diff) | |
download | vyatta-cfg-quagga-bc3053551243b835a3ee89250306d58d9213eb1c.tar.gz vyatta-cfg-quagga-bc3053551243b835a3ee89250306d58d9213eb1c.zip |
Turn off framebuffer (by default)
Revert "Enable vga framebuffer on console"
This reverts commit c2db47deb9aa0661468a36822b5105ed1fe51918.
Diffstat (limited to 'scripts/install-system')
-rwxr-xr-x | scripts/install-system | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/install-system b/scripts/install-system index 12ae10ed..8f2be62b 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -596,15 +596,8 @@ install_grub () { if [ -f "/boot/vmlinuz" ]; then # Set first system boot option. Make KVM the default console in this one. - # mode values for vga= - # Color depth | 640x480 | 800x600 | 1024x768 | 1280x1024 - # -----------------+---------+---------+----------+---------- - # 256 (8bit) | 769 771 773 775 - # 32000 (15bit) | 784 787 790 793 - # 65000 (16bit) | 785 788 791 794 - # 16.7 Mill.(24bit)| 786 789 792 795 echo -e "menuentry \"Vyatta OFR (KVM console)\" {" - echo -en "\tlinux /boot/vmlinuz root=/dev/$ROOT_PARTITION $ISCF quiet vga=788 console=ttyS0,9600 console=tty0\n" + echo -en "\tlinux /boot/vmlinuz root=/dev/$ROOT_PARTITION $ISCF console=ttyS0,9600 console=tty0 \n" echo -e "\tinitrd /boot/initrd.img" echo -e "}" |