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
Use PERSISTENCE_PATH with a trailing "/".
[debian-live-boot.git]
/
components
/
0010-debug
blob
cfb2fc8369e958ae47dff50551943558999d8677
1
#!/bin/sh
2
3
#set -e
4
5
Debug
()
6
{
7
for
_PARAMETER
in
${LIVE_BOOT_CMDLINE}
8
do
9
case
"
${_PARAMETER}
"
in
10
live-boot.debug|debug
)
11
LIVE_BOOT_DEBUG
=
"true"
12
;;
13
esac
14
done
15
16
case
"
${LIVE_BOOT_DEBUG}
"
in
17
true
)
18
;;
19
20
*)
21
return
0
22
;;
23
esac
24
25
# Write the trace output
26
set -x
27
}