Release new version 1:20210208+grml.5
[live-boot-grml.git] / components / 0010-debug
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 }