diff options
author | Michal Suchanek <michal.suchanek@ruk.cuni.cz> | 2008-08-26 15:14:23 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:01 +0100 |
commit | 364b46b527237033f9b15e6db9aa621ba4b3d35c (patch) | |
tree | 4ff39974e180267cf80b14e78dfd625b69fb71b3 | |
parent | 059acaa9da49953b091d220ed52de1d252c61ae5 (diff) | |
download | live-boot-364b46b527237033f9b15e6db9aa621ba4b3d35c.tar.gz live-boot-364b46b527237033f9b15e6db9aa621ba4b3d35c.zip |
Enabling the "remove CD" prompt in splashy.
-rwxr-xr-x | scripts/live | 4 | ||||
-rw-r--r-- | scripts/live-functions | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/scripts/live b/scripts/live index ec5f6e8..4ba4257 100755 --- a/scripts/live +++ b/scripts/live @@ -1338,7 +1338,9 @@ set_usplash_timeout () if [ -x /sbin/usplash_write ] then /sbin/usplash_write "TIMEOUT 120" - fi + else if [ -x /sbin/splashy_update ] ; then + /sbin/splashy_update "TIMEOUT 120" + fi ; fi } mountroot () diff --git a/scripts/live-functions b/scripts/live-functions index 0684dc0..96d6269 100644 --- a/scripts/live-functions +++ b/scripts/live-functions @@ -50,7 +50,9 @@ log_wait_msg () then /sbin/usplash_write "INPUTENTER ${@}" read nunya < /dev/.initramfs/usplash_outfifo - fi + else if [ -x /sbin/splashy_update ] ; then + /sbin/splashy_update "getstring ${@}" | read nunya + fi ; fi _log_msg "Waiting: ${@} ... \n" } |