summaryrefslogtreecommitdiff
path: root/frontend/live-boot
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2013-06-24 21:29:10 +0200
committerDaniel Baumann <mail@daniel-baumann.ch>2013-06-24 21:33:51 +0200
commit0aa07bd386f516176364e710e8b9132036c72986 (patch)
tree27e39d4b1a7deedad4adb8b6e62cc01e44c58bc5 /frontend/live-boot
parent9bb62c8a50e9e92b0e0d637c624d364be6a911ca (diff)
downloadlive-boot-0aa07bd386f516176364e710e8b9132036c72986.tar.gz
live-boot-0aa07bd386f516176364e710e8b9132036c72986.zip
Reorganizing frontend in source tree.
Diffstat (limited to 'frontend/live-boot')
-rwxr-xr-xfrontend/live-boot20
1 files changed, 20 insertions, 0 deletions
diff --git a/frontend/live-boot b/frontend/live-boot
new file mode 100755
index 0000000..67585f9
--- /dev/null
+++ b/frontend/live-boot
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# set -e
+
+# Reading configuration file from filesystem and live-media
+for _FILE in /etc/live/boot.conf /etc/live/boot/*
+do
+ if [ -e "${_FILE}" ]
+ then
+ . "${_FILE}"
+ fi
+done
+
+for _SCRIPT in /lib/live/boot/????-*
+do
+ if [ -e "${_SCRIPT}" ]
+ then
+ . ${_SCRIPT}
+ fi
+done