Remove part_ prefix

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-02-06 19:33:53 +01:00
parent bc6fcf0931
commit 85f90358b1
13 changed files with 25 additions and 16 deletions

View file

@ -194,7 +194,10 @@ fi
# Then the partition map module. In order to support partition-less media,
# this command is allowed to fail (--target=fs already grants us that the
# filesystem will be accessible).
partmap_module=`$grub_probe --target=partmap --device-map=${device_map} ${grubdir} 2> /dev/null`
partmap_module=
for x in `$grub_probe --target=partmap --device ${grub_device} 2> /dev/null`; do
partmap_module="$partmap_module part_$x";
done
# Device abstraction module, if any (lvm, raid).
devabstraction_module=`$grub_probe --target=abstraction --device-map=${device_map} ${grubdir}`