From cdeea6bf8b114e499c650e14549fd0affd5d5b4a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 26 Apr 2013 09:39:47 +0200 Subject: Renumbering the first three early scripts. --- scripts/boot/0020-read-only | 56 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 scripts/boot/0020-read-only (limited to 'scripts/boot/0020-read-only') diff --git a/scripts/boot/0020-read-only b/scripts/boot/0020-read-only new file mode 100755 index 0000000..859f771 --- /dev/null +++ b/scripts/boot/0020-read-only @@ -0,0 +1,56 @@ +#!/bin/sh + +#set -e + +Read_only () +{ + for _PARAMETER in ${_CMDLINE} + do + case "${_PARAMETER}" in + live-boot.read-only=*|read-only=*) + LIVE_READ_ONLY="true" + LIVE_READ_ONLY_DEVICES="${_PARAMETER#*read-only=}" + ;; + + live-boot.read-only|read-only) + LIVE_READ_ONLY="true" + ;; + esac + done + + case "${LIVE_READ_ONLY}" in + true) + ;; + + *) + return 0 + ;; + esac + + # Marking some block devices as read-only to ensure that nothing + # gets written as linux still writes to 'only' read-only mounted filesystems. + LIVE_READ_ONLY_DEVICES="${LIVE_READ_ONLY_DEVICES:-/dev/sd* /dev/vd*}" + + for _DEVICE in $(echo ${LIVE_READ_ONLY_DEVICES} | sed -e 's|,| |g') + do + if [ ! -b "${_DEVICE}" ] + then + continue + fi + + echo -n "live-boot: Setting ${_DEVICE} read-only..." > /dev/console + + blockdev --setro ${_DEVICE} + _RETURN="${?}" + + case "${_RETURN}" in + 0) + echo " done, use 'blockdev --setrw ${_DEVICE}' to set read-write." > /dev/console + ;; + + *) + echo " failed." > /dev/console + ;; + esac + done +} -- cgit v1.2.3