summaryrefslogtreecommitdiff
path: root/scripts/boot/0110-debug
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/boot/0110-debug')
-rwxr-xr-xscripts/boot/0110-debug27
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/boot/0110-debug b/scripts/boot/0110-debug
deleted file mode 100755
index f223e93..0000000
--- a/scripts/boot/0110-debug
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-#set -e
-
-Debug ()
-{
- for _PARAMETER in ${_CMDLINE}
- do
- case "${_PARAMETER}" in
- live-boot.debug|debug)
- LIVE_DEBUG="true"
- ;;
- esac
- done
-
- case "${LIVE_DEBUG}" in
- true)
- ;;
-
- *)
- return 0
- ;;
- esac
-
- # Write the trace output
- set -x
-}