summaryrefslogtreecommitdiff
path: root/scripts/boot
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/boot')
-rwxr-xr-xscripts/boot/cmdline.sh (renamed from scripts/boot/arguments.sh)21
1 files changed, 10 insertions, 11 deletions
diff --git a/scripts/boot/arguments.sh b/scripts/boot/cmdline.sh
index 5f34512..18a9a2c 100755
--- a/scripts/boot/arguments.sh
+++ b/scripts/boot/cmdline.sh
@@ -2,11 +2,11 @@
#set -e
-Arguments ()
+Cmdline ()
{
- for ARGUMENT in $(cat /proc/cmdline)
+ for _PARAMETER in ${_CMDLINE}
do
- case "${ARGUMENT}" in
+ case "${_PARAMETER}" in
live-boot.read-only|read-only)
LIVE_READ_ONLY="true"
export LIVE_READ_ONLY
@@ -17,7 +17,13 @@ Arguments ()
export LIVE_VERIFY_CHECKSUMS
;;
- # parameters below need review
+ # Special options
+ live-boot.debug|debug)
+ LIVE_DEBUG="true"
+ ;;
+
+
+ # parameters below need review (FIXME)
skipconfig)
NOFASTBOOT="true"
NOFSTAB="true"
@@ -30,13 +36,6 @@ Arguments ()
BOOTIF="${x#BOOTIF=}"
;;
- debug)
- DEBUG="true"
- export DEBUG
-
- set -x
- ;;
-
dhcp)
# Force dhcp even while netbooting
# Use for debugging in case somebody works on fixing dhclient