summaryrefslogtreecommitdiff
path: root/scripts/boot/arguments.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-06-05 18:16:05 +0200
committerDaniel Baumann <daniel@debian.org>2012-06-05 19:35:56 +0200
commitbc9ae2d777db55ecb3697185da60ece205b1b90b (patch)
treea59a83745fcf5f839cae54922754cea06198ca01 /scripts/boot/arguments.sh
parentbe6b2f51059e0604bd3728e6cd603972df8cf619 (diff)
downloadlive-boot-bc9ae2d777db55ecb3697185da60ece205b1b90b.tar.gz
live-boot-bc9ae2d777db55ecb3697185da60ece205b1b90b.zip
Updating read-only handling to new parameter handling.
Diffstat (limited to 'scripts/boot/arguments.sh')
-rwxr-xr-xscripts/boot/arguments.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/boot/arguments.sh b/scripts/boot/arguments.sh
index f9e8d33..5f34512 100755
--- a/scripts/boot/arguments.sh
+++ b/scripts/boot/arguments.sh
@@ -7,16 +7,17 @@ Arguments ()
for ARGUMENT in $(cat /proc/cmdline)
do
case "${ARGUMENT}" in
+ 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
- read-only)
- READ_ONLY="true"
- ;;
-
skipconfig)
NOFASTBOOT="true"
NOFSTAB="true"