diff options
author | Jesse Hathaway <jesse@mbuki-mvuki.org> | 2007-10-31 14:39:05 -0400 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:28 +0100 |
commit | 1652f585751bd32f850933980e98a409bec8da0c (patch) | |
tree | 4e51a0fda708972f2c9753e944b8c170cf2e9a30 /helpers/lh_config | |
parent | afe1aa871eed148737d07a5bd84340c2cc420fff (diff) | |
download | live-build-1652f585751bd32f850933980e98a409bec8da0c.zip live-build-1652f585751bd32f850933980e98a409bec8da0c.tar.gz |
fix syslinux timeout option
change MILISECONDS to SECONDS. Syslinux actually uses
tenths of seconds not milliseconds, but it seems
unnecessary to expose this to the user. Fix templates
to only specify the timeout once.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index 741b442..808c9cc 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -94,7 +94,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [-s|--source-images iso|net|tar|usb-hdd]\n\ \t [--symlinks enabled|disabled]\n\ \t [--syslinux-splash FILE]\n\ -\t [--syslinux-timeout MILISECONDS]\n\ +\t [--syslinux-timeout SECONDS]\n\ \t [--sysvinit enabled|disabled]\n\ \t [--tasksel aptitude|tasksel]\n\ \t [--tasks TASK]\n\ @@ -971,7 +971,7 @@ LH_NET_COW_SERVER="${LH_NET_COW_SERVER}" # (Default: empty) LH_SYSLINUX_SPLASH="${LH_SYSLINUX_SPLASH}" -# \$LH_SYSLINUX_TIMEOUT: set custom syslinux timeout +# \$LH_SYSLINUX_TIMEOUT: set custom syslinux timeout in seconds # (Default: 0) LH_SYSLINUX_TIMEOUT="${LH_SYSLINUX_TIMEOUT}" |