summaryrefslogtreecommitdiff
path: root/scripts/vyatta-grub-setup
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-11-06 11:44:35 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-11-06 11:44:35 -0800
commit41f076d45ec428261150113025b952b135540697 (patch)
treedc70840c90a0bac83999a6b857101e6093f694ba /scripts/vyatta-grub-setup
parent3ac74a6e711f050cfb8682df976b9f03e9bd5cf4 (diff)
downloadvyatta-cfg-system-41f076d45ec428261150113025b952b135540697.tar.gz
vyatta-cfg-system-41f076d45ec428261150113025b952b135540697.zip
Remove OFR from grub lines
OFR is no longer used in reference to Vyatta per marketing guidelines.
Diffstat (limited to 'scripts/vyatta-grub-setup')
-rwxr-xr-xscripts/vyatta-grub-setup12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/vyatta-grub-setup b/scripts/vyatta-grub-setup
index b3369ce4..26a322f2 100755
--- a/scripts/vyatta-grub-setup
+++ b/scripts/vyatta-grub-setup
@@ -178,7 +178,7 @@ fi
if [ -f "$ROOTFSDIR/boot/vmlinuz" ] && ! eval $UNION ; then
# Set first system boot option. Make KVM the default console in this one.
- echo -e "menuentry \"Vyatta OFR (KVM console)\" {"
+ echo -e "menuentry \"Vyatta (KVM console)\" {"
echo -e "\tlinux /boot/vmlinuz $GRUB_OPTIONS $vga_logo $vty_console"
echo -e "\tinitrd /boot/initrd.img"
echo -e "}"
@@ -186,7 +186,7 @@ fi
# Set the second system boot option. Make the serial port be the default
# console in this one.
echo
- echo -e "menuentry \"Vyatta OFR (Serial console)\" {"
+ echo -e "menuentry \"Vyatta (Serial console)\" {"
echo -e "\tlinux /boot/vmlinuz $GRUB_OPTIONS $serial_console"
echo -e "\tinitrd /boot/initrd.img"
echo -e "}"
@@ -196,12 +196,12 @@ fi
if [ -n "$union_kernel_versions" ]; then
for kversion in $union_kernel_versions; do
echo
- echo -e "menuentry \"Vyatta OFR linux$kversion (KVM console)\" {"
+ echo -e "menuentry \"Vyatta linux$kversion (KVM console)\" {"
echo -e "\tlinux /boot/$livedir/vmlinuz$kversion $GRUB_OPTIONS $vga_logo $vty_console"
echo -e "\tinitrd /boot/$livedir/initrd.img$kversion"
echo -e "}"
echo
- echo -e "menuentry \"Vyatta OFR linux$kversion (Serial console)\" {"
+ echo -e "menuentry \"Vyatta linux$kversion (Serial console)\" {"
echo -e "\tlinux /boot/$livedir/vmlinuz$kversion $GRUB_OPTIONS $serial_console"
echo -e "\tinitrd /boot/$livedir/initrd.img$kversion"
echo -e "}"
@@ -212,12 +212,12 @@ fi
if [ -n "$kernel_versions" ]; then
for kversion in $kernel_versions; do
echo
- echo -e "menuentry \"Vyatta OFR linux$kversion (KVM console)\" {"
+ echo -e "menuentry \"Vyatta linux$kversion (KVM console)\" {"
echo -e "\tlinux /boot/vmlinuz$kversion $GRUB_OPTIONS $vga_logo $vty_console"
echo -e "\tinitrd /boot/initrd.img$kversion"
echo -e "}"
echo
- echo -e "menuentry \"Vyatta OFR linux$kversion (Serial console)\" {"
+ echo -e "menuentry \"Vyatta linux$kversion (Serial console)\" {"
echo -e "\tlinux /boot/vmlinuz$kversion $GRUB_OPTIONS $serial_console"
echo -e "\tinitrd /boot/initrd.img$kversion"
echo -e "}"