diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-09 13:41:23 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-09 13:41:23 +0000 |
commit | 155c2bd565900b9fdc00319b84a8fd6892bc4958 (patch) | |
tree | 58d9a3e1ff2754729e3b89586e5e884bbb601a16 /src | |
parent | 5cdac409253ba7defdc7246606a0fa770a4648b2 (diff) | |
download | bootloader-theme-155c2bd565900b9fdc00319b84a8fd6892bc4958.tar bootloader-theme-155c2bd565900b9fdc00319b84a8fd6892bc4958.tar.gz bootloader-theme-155c2bd565900b9fdc00319b84a8fd6892bc4958.tar.bz2 bootloader-theme-155c2bd565900b9fdc00319b84a8fd6892bc4958.tar.xz bootloader-theme-155c2bd565900b9fdc00319b84a8fd6892bc4958.zip |
Rename "restore" entry when booting with syslinux
Diffstat (limited to 'src')
-rw-r--r-- | src/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.inc b/src/common.inc index a72b819..731c23e 100644 --- a/src/common.inc +++ b/src/common.inc @@ -881,11 +881,11 @@ dup "harddisk" eq { pop txt_boot_harddisk return } if dup "mediachk" eq { pop txt_mediacheck return } if dup "mediacheck" eq { pop txt_mediacheck return } if + dup "restore" eq { pop txt_restore return } if } { dup "linux" eq { pop txt_linux return } if dup "failsafe" eq { pop txt_safe_linux return } if dup "windows" eq { pop txt_windows return } if - dup "restore" eq { pop txt_restore return } if dup "2.6" strstr 1 eq { txt_linux_kernel_version kernel_str sprintf kernel_str return } if } ifelse |