diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2008-08-13 19:06:36 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2008-08-13 19:06:36 -0700 |
commit | 629acfb44e5fccb18a19092034913eddf6cc1c1c (patch) | |
tree | 738f3c210ac1d752dc270c8de25920fb142ff098 | |
parent | 883737f620c6e0e95b1f92d2e24e9375efb20910 (diff) | |
download | vyatta-cfg-system-629acfb44e5fccb18a19092034913eddf6cc1c1c.tar.gz vyatta-cfg-system-629acfb44e5fccb18a19092034913eddf6cc1c1c.zip |
Bugfix: 1292
Disable logo per instructions from Anatoly.
-rwxr-xr-x | scripts/grub-setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/grub-setup b/scripts/grub-setup index 1e6751d9..a681a955 100755 --- a/scripts/grub-setup +++ b/scripts/grub-setup @@ -119,7 +119,7 @@ vga_logo="vga=785" if [ -f "/boot/vmlinuz" ]; then # Set first system boot option. Make KVM the default console in this one. echo -e "menuentry \"Vyatta OFR (KVM console)\" {" - echo -e "\tlinux /boot/vmlinuz $GRUB_OPTIONS $vga_logo $vty_console" + echo -e "\tlinux /boot/vmlinuz $GRUB_OPTIONS $vty_console" echo -e "\tinitrd /boot/initrd.img" echo -e "}" |