X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=debian%2Flive-boot.init;h=f0982a8e9aad130120dc19258c5a030b19926128;hb=6b21c571a2c065b10f1048a8827ee72bf67f5f5c;hp=c8c48206d405800888fcf94ad400e0637da675be;hpb=37553aee8bbf9550c838d1810706b54b457c6680;p=live-boot-grml.git diff --git a/debian/live-boot.init b/debian/live-boot.init index c8c4820..f0982a8 100644 --- a/debian/live-boot.init +++ b/debian/live-boot.init @@ -21,12 +21,13 @@ PATH=/usr/sbin:/usr/bin:/sbin:/bin NAME=live-boot SCRIPTNAME=/etc/init.d/${NAME} DO_SNAPSHOT=/sbin/live-snapshot +SNAPSHOT_CONF="/etc/live/boot.d/snapshot.conf" # Exit if system was not booted by live-boot grep -qs boot=live /proc/cmdline || exit 0 -# Read configuration variable file if it is present -[ -r /etc/live.conf ] && . /etc/live.conf +# Read snapshot configuration variables +[ -r ${SNAPSHOT_CONF} ] && . ${SNAPSHOT_CONF} # Load the VERBOSE setting and other rcS variables [ -f /etc/default/rcS ] && . /etc/default/rcS @@ -48,7 +49,7 @@ cache_path() then if [ -x "${path}" ] then - if file "${path}" | grep -q 'dynamically linked' + if file -L "${path}" | grep -q 'dynamically linked' then for lib in $(ldd "${path}" | awk '{ print $3 }') do @@ -83,8 +84,7 @@ device_is_USB_flash_drive() [ "$(expr substr ${DEVICE} 1 2)" != "sd" ] && return 1 # check that the device is an USB device - if readlink /sys/block/${DEVICE} | grep -q usb || - readlink /sys/block/${DEVICE}/device | grep -q usb # linux < 2.6.29 + if readlink /sys/block/${DEVICE} | grep -q usb then return 0 fi @@ -96,6 +96,7 @@ do_stop () { if ! grep -qs nopersistent /proc/cmdline && grep -qs persistent /proc/cmdline then + # ROOTSNAP and HOMESNAP are defined in ${SNAPSHOT_CONF} file if [ ! -z "${ROOTSNAP}" ] then ${DO_SNAPSHOT} --resync-string="${ROOTSNAP}" @@ -113,6 +114,12 @@ do_stop () return 0 fi + # check for toram + if grep -qs toram /proc/cmdline + then + return 0 + fi + # Don't prompt to eject the SD card on Babbage board, where we reuse it # as a quasi-boot-floppy. Technically this uses a bit of ubiquity # (archdetect), but since this is mostly only relevant for @@ -129,12 +136,12 @@ do_stop () fi prompt=1 - if grep -qs noprompt /proc/cmdline + if [ "${NOPROMPT}" = "Yes" ] then prompt= fi - for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty) /bin/plymouth /sbin/usplash_write + for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty) /bin/plymouth do cache_path "${path}" done @@ -148,6 +155,8 @@ do_stop () esac done + mount -o remount,ro /live/cow + if [ -z ${QUICKREBOOT} ] then @@ -163,15 +172,26 @@ do_stop () # failes because they actually remember the # "ejected" state even after reboot MESSAGE="Please remove the USB flash drive" + + if [ "${NOPROMPT}" = "usb" ] + then + prompt= + fi + else # ejecting is a very good idea here - MESSAGE="Please remove the disc, close the the tray (if any)" + MESSAGE="Please remove the disc, close the tray (if any)" if [ -x /usr/bin/eject ] then eject -p -m /live/image >/dev/null 2>&1 fi + if [ ${NOPROMPT} = "cd" ] + then + prompt= + fi + fi [ "$prompt" ] || return 0 @@ -185,13 +205,6 @@ do_stop () printf "\n\n${MESSAGE} and press ENTER to continue:" > /dev/console - if [ -x /sbin/usplash_write ] - then - /sbin/usplash_write "TIMEOUT 86400" - /sbin/usplash_write "TEXT-URGENT ${MESSAGE}" - /sbin/usplash_write "TEXT-URGENT and press ENTER to continue" - fi - read x < /dev/console fi fi @@ -203,9 +216,10 @@ case "${1}" in ;; start) log_begin_msg "${NAME} is configuring sendsigs..." - if [ -f /live/image/root.pid ] ; then - cat /live/image/root.pid >> /var/run/sendsigs.omit + if [ -f /live/root.pid ] ; then + cat /live/root.pid >> /var/run/sendsigs.omit fi + log_end_msg 0 ;; stop) @@ -221,8 +235,6 @@ case "${1}" in [ "${VERBOSE}" != no ] && log_end_msg 1 ;; esac - - mount -o remount,ro /live/cow ;; *)