summaryrefslogtreecommitdiff
path: root/scripts/boot/arguments.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/boot/arguments.sh')
-rwxr-xr-xscripts/boot/arguments.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/boot/arguments.sh b/scripts/boot/arguments.sh
index eeedeca..f9e8d33 100755
--- a/scripts/boot/arguments.sh
+++ b/scripts/boot/arguments.sh
@@ -7,6 +7,12 @@ Arguments ()
for ARGUMENT in $(cat /proc/cmdline)
do
case "${ARGUMENT}" in
+ live-boot.verify-checksums|verify-checksums)
+ LIVE_VERIFY_CHECKSUMS="true"
+ export LIVE_VERIFY_CHECKSUMS
+ ;;
+
+ # parameters below need review
read-only)
READ_ONLY="true"
;;
@@ -96,11 +102,6 @@ Arguments ()
export IGNORE_UUID
;;
- integrity-check)
- INTEGRITY_CHECK="true"
- export INTEGRITY_CHECK
- ;;
-
ip=*)
STATICIP="${ARGUMENT#ip=}"