summaryrefslogtreecommitdiffstats
path: root/system-boot/components/0010-debug
blob: cfb2fc8369e958ae47dff50551943558999d8677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

#set -e

Debug ()
{
	for _PARAMETER in ${LIVE_BOOT_CMDLINE}
	do
		case "${_PARAMETER}" in
			live-boot.debug|debug)
				LIVE_BOOT_DEBUG="true"
				;;
		esac
	done

	case "${LIVE_BOOT_DEBUG}" in
		true)
			;;

		*)
			return 0
			;;
	esac

	# Write the trace output
	set -x
}