diff options
-rwxr-xr-x | scripts/install-system | 9 | ||||
-rwxr-xr-x | scripts/quick-install | 2 |
2 files changed, 2 insertions, 9 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 "}" diff --git a/scripts/quick-install b/scripts/quick-install index d6556e12..347cafd2 100755 --- a/scripts/quick-install +++ b/scripts/quick-install @@ -572,7 +572,7 @@ install_grub () { echo -e "serial --unit=0 --speed=9600\nterminal --timeout=5 console serial\n\n" >> $grub_file # set primary boot option echo -e "title Vyatta OFR\n\troot $root" >> $grub_file - echo -en "\tkernel /boot/vmlinuz root=/dev/$ROOT_PARTITION $ISCF quiet vga=788 console=ttyS0,9600 console=tty0\n" >> $grub_file + echo -en "\tkernel /boot/vmlinuz root=/dev/$ROOT_PARTITION $ISCF console=ttyS0,9600 console=tty0\n" >> $grub_file echo -e "\tinitrd /boot/initrd.img" >> $grub_file echo "OK" |