summaryrefslogtreecommitdiff
path: root/plymouth/debian/local/plymouth.init-bottom
diff options
context:
space:
mode:
Diffstat (limited to 'plymouth/debian/local/plymouth.init-bottom')
-rw-r--r--plymouth/debian/local/plymouth.init-bottom17
1 files changed, 17 insertions, 0 deletions
diff --git a/plymouth/debian/local/plymouth.init-bottom b/plymouth/debian/local/plymouth.init-bottom
new file mode 100644
index 0000000..e7d9249
--- /dev/null
+++ b/plymouth/debian/local/plymouth.init-bottom
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+PREREQ="udev"
+
+prereqs()
+{
+ echo "${PREREQ}"
+}
+
+case ${1} in
+ prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+/bin/plymouth --newroot=${rootmnt}
bgstack15