repo.or.cz
/
debian-live-boot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 4.0~a6.
[debian-live-boot.git]
/
scripts
/
boot.sh
blob
67585f9c9558795a5bc2c6fb3cc9e4f3c01d43f9
1
#!/bin/sh
2
3
# set -e
4
5
# Reading configuration file from filesystem and live-media
6
for
_FILE
in
/
etc
/
live
/
boot.conf
/
etc
/
live
/
boot
/*
7
do
8
if
[
-e
"
${_FILE}
"
]
9
then
10
.
"
${_FILE}
"
11
fi
12
done
13
14
for
_SCRIPT
in
/
lib
/
live
/
boot
/
????
-*
15
do
16
if
[
-e
"
${_SCRIPT}
"
]
17
then
18
.
${_SCRIPT}
19
fi
20
done