X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive-helpers;h=8f28f3b9da50a3fa338e2f12a3916092d9cc6c69;hb=ccea277caf476cdfef4c0f953df5a97062d8be42;hp=eac2175a166a8564b11ed49a160674c765de32c9;hpb=3d52fbcb4fe70132ade14759d76573b471294800;p=live-boot-grml.git diff --git a/scripts/live-helpers b/scripts/live-helpers index eac2175..8f28f3b 100644 --- a/scripts/live-helpers +++ b/scripts/live-helpers @@ -204,7 +204,7 @@ find_cow_device() { } find_files() -# return the first of $filenames found on vfat and ext2 devices +# return the first of $filenames found on vfat and ext2/ext3 devices # FIXME: merge with above function { filenames="${1}" @@ -213,7 +213,7 @@ find_files() for dev in $(subdevices "${sysblock}"); do devname=$(sys2dev "${dev}") devfstype="$(get_fstype ${devname})" - if [ "${devfstype}" = "vfat" ] || [ "${devfstype}" = "ext2" ] ; then # FIXME: all supported block devices should be scanned + if [ "${devfstype}" = "vfat" ] || [ "${devfstype}" = "ext2" ] || [ "${devfstype}" = "ext3" ]; then # FIXME: all supported block devices should be scanned mkdir -p "${snap_backing}" try_mount "${devname}" "${snap_backing}" "ro" for filename in ${filenames}; do