diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2008-07-03 14:22:14 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2008-07-03 14:22:14 -0700 |
commit | 18f09e5fe87492ef53168e1d6a29b516c47ce7ab (patch) | |
tree | cf97292ff31df60927cf952938dd89af0a08689a /scripts/install-system | |
parent | b9ce1592c0689d3358c9f507c037c0af9a763436 (diff) | |
download | vyatta-cfg-system-18f09e5fe87492ef53168e1d6a29b516c47ce7ab.tar.gz vyatta-cfg-system-18f09e5fe87492ef53168e1d6a29b516c47ce7ab.zip |
Bugfix: 1592
Fix the boot command syntax for password recovery on serial console.
Diffstat (limited to 'scripts/install-system')
-rwxr-xr-x | scripts/install-system | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-system b/scripts/install-system index defca8fb..a77fc446 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -716,7 +716,7 @@ install_grub () { echo echo -e "menuentry \"Root password reset to factory (Serial console)\" {" - echo -e "\tkernel /boot/vmlinuz $GRUB_ROOT $GRUB_OPTIONS $SERIAL_CONSOLE init=$PWRESET" + echo -e "\tlinux /boot/vmlinuz $GRUB_ROOT $GRUB_OPTIONS $SERIAL_CONSOLE init=$PWRESET" echo -e "\tinitrd /boot/initrd.img" echo -e "}" ) >"$rootfsdir/boot/grub/grub.cfg" |