X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Fboot%2Farguments.sh;h=5f345122b3d703b7678704927d68790ba0c2fa82;hb=bc9ae2d777db55ecb3697185da60ece205b1b90b;hp=eeedeca62dcbc2489f604515004e0b6e146a5de3;hpb=bc79205b554396acd1a20538df2e189eb304ec9e;p=live-boot-grml.git diff --git a/scripts/boot/arguments.sh b/scripts/boot/arguments.sh index eeedeca..5f34512 100755 --- a/scripts/boot/arguments.sh +++ b/scripts/boot/arguments.sh @@ -7,10 +7,17 @@ Arguments () for ARGUMENT in $(cat /proc/cmdline) do case "${ARGUMENT}" in - read-only) - READ_ONLY="true" + live-boot.read-only|read-only) + LIVE_READ_ONLY="true" + export LIVE_READ_ONLY ;; + live-boot.verify-checksums|verify-checksums) + LIVE_VERIFY_CHECKSUMS="true" + export LIVE_VERIFY_CHECKSUMS + ;; + + # parameters below need review skipconfig) NOFASTBOOT="true" NOFSTAB="true" @@ -96,11 +103,6 @@ Arguments () export IGNORE_UUID ;; - integrity-check) - INTEGRITY_CHECK="true" - export INTEGRITY_CHECK - ;; - ip=*) STATICIP="${ARGUMENT#ip=}"