X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive-helpers;h=ccc3a4ad5e2aab54b4fb7b75409a40465d403dac;hb=c16b43adc7470f749f2b34ca22f331764683ca8d;hp=9cf3b9982f4ee7dde677239418deb497a04b3c15;hpb=b15f95e06e40a70ed75c30b31cee89d43ec8196b;p=live-boot-grml.git diff --git a/scripts/live-helpers b/scripts/live-helpers index 9cf3b99..ccc3a4a 100644 --- a/scripts/live-helpers +++ b/scripts/live-helpers @@ -1,16 +1,6 @@ #!/bin/sh # live-initramfs helper functions, used by live-initramfs on boot and by live-snapshot -if [ "${BUILD_SYSTEM}" = "Ubuntu" ] -then - MP_QUIET="-Q" -elif [ "${BUILD_SYSTEM}" = "Debian" ] -then - MP_QUIET="-q" -else - MP_QUIET="" -fi - if [ ! -x "/bin/fstype" ] then # klibc not in path -> not in initramfs @@ -25,7 +15,7 @@ sys2dev () subdevices () { - sysblock=$1 + sysblock=${1} r="" for dev in "${sysblock}" "${sysblock}"/* @@ -44,25 +34,25 @@ get_fstype () local FSTYPE local FSSIZE - eval $(fstype < $1) + eval $(fstype < ${1}) - if [ "$FSTYPE" != "unknown" ] + if [ "${FSTYPE}" != "unknown" ] then - echo $FSTYPE + echo ${FSTYPE} return 0 fi - /lib/udev/vol_id -t $1 2>/dev/null + /lib/udev/vol_id -t ${1} 2>/dev/null } where_is_mounted () { - device=$1 + device=${1} - if grep -q "^$device " /proc/mounts + if grep -q "^${device} " /proc/mounts then - grep "^$device " /proc/mounts | read d mountpoint rest - echo $mountpoint + grep "^${device} " /proc/mounts | read d mountpoint rest + echo ${mountpoint} return 0 fi @@ -89,11 +79,11 @@ base_path () do if echo "${mounts}" | grep -qs "^${testpath}" then - set -- `echo "${mounts}" | grep "^${testpath}" | lastline` + set -- $(echo "${mounts}" | grep "^${testpath}" | lastline) echo ${1} break else - testpath=`dirname $testpath` + testpath=$(dirname $testpath) fi done } @@ -101,7 +91,7 @@ base_path () fs_size () { # Returns used/free fs kbytes + 5% more - # You could pass a block device as $1 or the mount point as $2 + # You could pass a block device as ${1} or the mount point as ${2} dev="${1}" mountp="${2}" @@ -111,7 +101,7 @@ fs_size () then mountp=$(where_is_mounted "${dev}") - if [ "$?" -gt 0 ] + if [ "${?}" -gt 0 ] then mountp="/mnt/tmp_fs_size" @@ -151,18 +141,18 @@ load_keymap () setup_loop () { - local fspath=$1 - local module=$2 - local pattern=$3 - local offset=$4 - local encryption=$5 + local fspath=${1} + local module=${2} + local pattern=${3} + local offset=${4} + local encryption=${5} - modprobe ${MP_QUIET} -b "$module" + modprobe -q -b "${module}" udevsettle - for loopdev in $pattern + for loopdev in ${pattern} do - if [ "$(cat $loopdev/size)" -eq 0 ] + if [ "$(cat ${loopdev}/size)" -eq 0 ] then dev=$(sys2dev "${loopdev}") options='' @@ -186,7 +176,7 @@ setup_loop () echo "${passphrase}" > /tmp/passphrase exec 9/dev/null)" = "${pers_label}" ] + if [ "$(/lib/udev/vol_id -l ${devname} 2>/dev/null)" = "${pers_label}" ] then - echo "$devname" + echo "${devname}" return elif [ "$(get_fstype ${devname})" = "vfat" ] then @@ -265,7 +255,7 @@ find_cow_device () find_files () { - # return the first of $filenames found on vfat and ext2/ext3 devices + # return the first of ${filenames} found on vfat and ext2/ext3 devices # FIXME: merge with above function filenames="${1}"