diff options
| author | Jonathan Bauer | 2011-12-05 17:48:13 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-12-05 17:48:13 +0100 |
| commit | f8c9d2eed804ee4ce86b65c3fb4cacb81bad3322 (patch) | |
| tree | 9100c039c4e05a01584b315056b48f5f7813c27b /src/os-plugins/plugins/plymouth/init-hooks | |
| parent | plymouth: only start when debuglevel = 0 (diff) | |
| download | core-f8c9d2eed804ee4ce86b65c3fb4cacb81bad3322.tar.gz core-f8c9d2eed804ee4ce86b65c3fb4cacb81bad3322.tar.xz core-f8c9d2eed804ee4ce86b65c3fb4cacb81bad3322.zip | |
plymouth: fix flickers
Diffstat (limited to 'src/os-plugins/plugins/plymouth/init-hooks')
| -rw-r--r-- | src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh | 3 | ||||
| -rw-r--r-- | src/os-plugins/plugins/plymouth/init-hooks/95-handing-over/plymouth.sh | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh b/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh index 19c26862..54a86774 100644 --- a/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh +++ b/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh @@ -1,4 +1,5 @@ # only start with no debug level if [ $DEBUGLEVEL -eq 0 ]; then - plymouthd && plymouth show-splash + /sbin/plymouthd --mode=boot --attach-to-session + /bin/plymouth show-splash fi diff --git a/src/os-plugins/plugins/plymouth/init-hooks/95-handing-over/plymouth.sh b/src/os-plugins/plugins/plymouth/init-hooks/95-handing-over/plymouth.sh new file mode 100644 index 00000000..d7f27411 --- /dev/null +++ b/src/os-plugins/plugins/plymouth/init-hooks/95-handing-over/plymouth.sh @@ -0,0 +1,4 @@ +# only start with no debug level +if [ $DEBUGLEVEL -eq 0 ]; then + /bin/plymouth update-root-fs --new-root-dir=/mnt +fi |
