summaryrefslogtreecommitdiffstats
path: root/rescue/restore-image.sh
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2009-02-11 14:47:22 +0000
committerOlivier Blin <oblin@mandriva.com>2009-02-11 14:47:22 +0000
commit48815493b6115693814ef20257d6b4dbc3ab6d85 (patch)
tree7dbc0180af82f57c8c759ac83c6cc8546d858bcb /rescue/restore-image.sh
parentbf65cc609a86a2d2c6228f3b72a0b134ea9e615d (diff)
downloaddrakx-backup-do-not-use-48815493b6115693814ef20257d6b4dbc3ab6d85.tar
drakx-backup-do-not-use-48815493b6115693814ef20257d6b4dbc3ab6d85.tar.gz
drakx-backup-do-not-use-48815493b6115693814ef20257d6b4dbc3ab6d85.tar.bz2
drakx-backup-do-not-use-48815493b6115693814ef20257d6b4dbc3ab6d85.tar.xz
drakx-backup-do-not-use-48815493b6115693814ef20257d6b4dbc3ab6d85.zip
grep for win32 part once only in /tmp/fdisk.log
Diffstat (limited to 'rescue/restore-image.sh')
-rwxr-xr-xrescue/restore-image.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/rescue/restore-image.sh b/rescue/restore-image.sh
index 0aece56b1..a8539b290 100755
--- a/rescue/restore-image.sh
+++ b/rescue/restore-image.sh
@@ -98,7 +98,12 @@ function detect_root()
fdisk -l | grep "^/dev/" | grep -v ${dev} > /tmp/fdisk.log
first_disk=$(echo ${devices} | cut -d ' ' -f 1)
- if ! grep -qe "FAT\|NTFS\|HPFS" /tmp/fdisk.log; then
+ # get the last created windows partition information
+ set -f
+ first_win32_part_dev=$(grep -e "FAT\|NTFS\|HPFS" /tmp/fdisk.log | tail -1 | sed 's/ .*$//')
+ set +f
+
+ if [ -z "${first_win32_part_dev}" ]; then
rm -rf /tmp/fdisk.log
if [ "$devs_found" -gt "2" ]; then
if [ ! -z ${dev} ]; then
@@ -116,7 +121,7 @@ function detect_root()
root=$first_disk
fi
else
- root=$(detect_and_resize_win32 $first_disk)
+ root=$(detect_and_resize_win32 $first_disk $first_win32_part_dev)
fi
echo "${root}"
@@ -126,15 +131,10 @@ function detect_and_resize_win32()
{
# from detect_root()
disk=${1}
+ device=${2}
# won't handle complex layouts
if [ ! $(grep "^/dev" /tmp/fdisk.log | wc -l) -gt 1 ]; then
- set -f
- # get the last created windows partition information
- partition=$(grep -e "FAT\|NTFS\|HPFS" /tmp/fdisk.log | tail -1)
- device=$(echo ${partition} | sed 's/ .*$//')
- set +f
-
# it might be needed, for safety
device_type=$(vol_id --type ${device})
modprobe ${device_type}