Rewriting live-media checksum verification to work with any SHA and MD5 digests.
[live-boot-grml.git] / scripts / boot / arguments.sh
index eeedeca..f9e8d33 100755 (executable)
@@ -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=}"