summaryrefslogtreecommitdiff
path: root/scripts/boot/0010-debug
blob: 9b57d56be5b2c06fd2cbf6cfd949c903042a94d8 (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 ${_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
}