diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-08-29 18:34:09 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-08-29 18:34:09 -0700 |
commit | 70f9ac1071f37a59b15b4cb761a9690dcca25f73 (patch) | |
tree | d64c33f8b0629f8d08a1f62ace56a47b4e803955 | |
parent | 33f7123269eeb41f9f504040a2345538ff464ef1 (diff) | |
download | vyatta-cfg-system-70f9ac1071f37a59b15b4cb761a9690dcca25f73.tar.gz vyatta-cfg-system-70f9ac1071f37a59b15b4cb761a9690dcca25f73.zip |
remove 2nd timeout to avoid 64-bit boot problem
-rwxr-xr-x | scripts/grub-setup | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/grub-setup b/scripts/grub-setup index 530cd5b9..e03020b4 100755 --- a/scripts/grub-setup +++ b/scripts/grub-setup @@ -117,7 +117,8 @@ vga_logo="vga=785" echo -e "\techo -n Press the ESC key to enter the Grub menu..." echo -e "\tif sleep --verbose --interruptible 5 ; then" echo -e "\t\tterminal serial" - echo -e "\t\tset timeout=0" + ## don't set timeout here. causes boot problem on 64-bit + # echo -e "\t\tset timeout=0" echo -e "\tfi" echo "fi" echo "" |