Comment 9 for bug 816859

Revision history for this message
Lars Ellenberg (just-do-it) wrote :

I found the following workaround to be good enough for me: basically just tell the initrd plymouth to quit before resume.

sudo -i # become root
cd /usr/share/initramfs-tools/scripts/local-premount
patch <<EOF uswsusp
--- uswsusp.orig
+++ uswsusp
@@ -34,4 +34,6 @@
      mknod /dev/snapshot c ${DEV%:*} ${DEV#*:}
 fi

+[ -x /bin/plymouth ] && plymouth quit
+
 /sbin/resume
EOD

update-initramfs -u # still root

Done.

Have fun.