summaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2013-02-28 22:28:36 +0100
committerDaniel Baumann <mail@daniel-baumann.ch>2013-05-06 13:54:15 +0200
commitc99ac9f26c0c70f412844095c9d87d9c1357cb6b (patch)
tree6f3365b890a52767bd969265c89c0aad66b20612 /backends
parent02006eaef8a220c3740a4e4f9a7d53f352f9c193 (diff)
downloadlive-boot-c99ac9f26c0c70f412844095c9d87d9c1357cb6b.tar.gz
live-boot-c99ac9f26c0c70f412844095c9d87d9c1357cb6b.zip
Moving dracut entry-point stub to backends.
Diffstat (limited to 'backends')
-rwxr-xr-xbackends/dracut/live.script14
1 files changed, 14 insertions, 0 deletions
diff --git a/backends/dracut/live.script b/backends/dracut/live.script
new file mode 100755
index 0000000..270fce9
--- /dev/null
+++ b/backends/dracut/live.script
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+#set -e
+
+if [ -e /lib/live/boot.sh ]
+then
+ . /lib/live/boot.sh
+fi
+
+DRACUT_FIXME ()
+{
+ # dracut entry point for live-boot is FIXME(); function
+ Main
+}