Removing usplash support in initramfs, usplash is dead.
authorDaniel Baumann <daniel@debian.org>
Mon, 6 Sep 2010 13:20:32 +0000 (15:20 +0200)
committerDaniel Baumann <daniel@debian.org>
Mon, 6 Sep 2010 13:20:32 +0000 (15:20 +0200)
debian/live-boot.bug-script
scripts/live
scripts/live-functions

index 4f327b1..1dc3d3b 100644 (file)
@@ -10,6 +10,6 @@ dpkg -l eject uuid-runtime wget
 dpkg -l loop-aes-utils curlftpfs genext2fs httpfs2 squashfs-tools mtd-tools
 
 # Checking other packages
-dpkg -l cryptsetup splashy usplash
+dpkg -l cryptsetup
 
 exit 0
index 8be3942..60a2c33 100755 (executable)
@@ -1626,16 +1626,6 @@ find_livefs ()
        return 1
 }
 
-set_usplash_timeout ()
-{
-       if [ -x /sbin/usplash_write ]
-       then
-               /sbin/usplash_write "TIMEOUT 120"
-       else if [ -x /sbin/splashy_update ] ; then
-               /sbin/splashy_update "TIMEOUT 120"
-       fi ; fi
-}
-
 integrity_check ()
 {
        media_mountpoint="${1}"
@@ -1662,14 +1652,6 @@ integrity_check ()
        fi
 }
 
-start_usplash_pulse ()
-{
-       if [ -x /sbin/usplash_write ]
-       then
-               /sbin/usplash_write "PULSELOGO"
-       fi
-}
-
 mountroot ()
 {
         if [ -x /scripts/local-top/cryptroot ]; then
@@ -1688,9 +1670,6 @@ mountroot ()
 
        Arguments
 
-       set_usplash_timeout
-       start_usplash_pulse
-
        maybe_break live-premount
        log_begin_msg "Running /scripts/live-premount"
        run_scripts /scripts/live-premount
@@ -1699,8 +1678,6 @@ mountroot ()
        # Needed here too because some things (*cough* udev *cough*)
        # changes the timeout
 
-       set_usplash_timeout
-
        if [ ! -z "${NETBOOT}" ] || [ ! -z "${FETCH}" ] || [ ! -z "${HTTPFS}" ] || [ ! -z "${FTPFS}" ]
        then
                if do_netmount
index b1d7503..5efe432 100644 (file)
@@ -9,13 +9,7 @@ log_wait_msg ()
        then
                plymouth message --text="$@"
                plymouth watch-keystroke | read nunya
-       elif [ -x /sbin/usplash_write ]
-       then
-               /sbin/usplash_write "INPUTENTER ${@}"
-               read nunya < /dev/.initramfs/usplash_outfifo
-       else if [ -x /sbin/splashy_update ] ; then
-               /sbin/splashy_update "getstring ${@}" | read nunya
-       fi ; fi
+       fi
 
        _log_msg "Waiting: ${@} ... \n"
 }