From: T(A)ILS developers Date: Wed, 20 Oct 2010 16:33:12 +0000 (+0200) Subject: Enhancing devices search ordering. X-Git-Tag: debian/3.0_a15-1~29 X-Git-Url: http://git.grml.org/?p=live-boot-grml.git;a=commitdiff_plain;h=55f18c76f09ca7e86bb14a1b5131ced120ba8026 Enhancing devices search ordering. E.g. prefer mounting /dev/sdb1 rather than /dev/sdb. The isohybrid feature makes both valid devices for being searched for a live filesystem image. Previous code mounted /dev/sdb on /live/image which makes it hard to create a second partition on the USB stick. This brings the need to explicitly check whether the full device is in the blacklist before even considering its subdevices: the previous blacklist checking code worked because the full device was always considered before its subdevices, which is not true anymore. --- diff --git a/scripts/live-helpers b/scripts/live-helpers index 0e9b0d0..b1883ff 100644 --- a/scripts/live-helpers +++ b/scripts/live-helpers @@ -26,7 +26,7 @@ subdevices () sysblock=${1} r="" - for dev in "${sysblock}" "${sysblock}"/* + for dev in "${sysblock}"/* "${sysblock}" do if [ -e "${dev}/dev" ] then @@ -297,13 +297,21 @@ find_cow_device () for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -v loop | grep -v ram | grep -v fd) do + fulldevname=$(sys2dev "${sysblock}") + + if echo "${black_listed_devices}" | grep -q -w "${fulldevname}" + then + # skip this device entirely + break + fi + for dev in $(subdevices "${sysblock}") do devname=$(sys2dev "${dev}") if echo "${black_listed_devices}" | grep -q -w "${devname}" then - # skip this device enterely + # skip this subdevice break fi @@ -383,6 +391,14 @@ find_files () for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -v loop | grep -v ram | grep -v fd) do + fulldevname=$(sys2dev "${sysblock}") + + if echo "${black_listed_devices}" | grep -q -w "${fulldevname}" + then + # skip this device entirely + break + fi + for dev in $(subdevices "${sysblock}") do devname=$(sys2dev "${dev}") @@ -390,7 +406,7 @@ find_files () if echo "${black_listed_devices}" | grep -q -w "${devname}" then - # skip this device enterely + # skip this subdevice break fi