X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=frontend%2Flive-boot;fp=frontend%2Flive-boot;h=32d0a3be98a42f3d7c7873b458d75af85c8ca54e;hb=3b9aa28dd04d694d49a07cf4d13fc8c704891f5b;hp=0000000000000000000000000000000000000000;hpb=659360c19ad0a28a430545149fc2c4f834d11007;p=live-boot-grml.git diff --git a/frontend/live-boot b/frontend/live-boot new file mode 100755 index 0000000..32d0a3b --- /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 _COMONENT in /lib/live/boot/????-* +do + if [ -e "${_COMONENT}" ] + then + . ${_COMONENT} + fi +done