summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrescue/restore-image-lib.sh1
-rwxr-xr-xrescue/restore-image.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/rescue/restore-image-lib.sh b/rescue/restore-image-lib.sh
index 625b96cca..b6d31a53a 100755
--- a/rescue/restore-image-lib.sh
+++ b/rescue/restore-image-lib.sh
@@ -2,6 +2,7 @@
TITLE="Mandriva Installer"
BACKTITLE="Mandriva"
+MIN_DISKSIZE=800000
debug="/dev/null"
diff --git a/rescue/restore-image.sh b/rescue/restore-image.sh
index 4e2f06708..07fdc9437 100755
--- a/rescue/restore-image.sh
+++ b/rescue/restore-image.sh
@@ -74,7 +74,7 @@ do you want to continue?\n "
function detect_root()
{
dev=$(sed '/\/tmp\/media/!d;s/[0-9] .*$//;s/^.*\///' /proc/mounts)
- devices=$(grep "^ .*[^0-9]$" < /proc/partitions | grep -v ${dev} | awk '{ print $4,$3 }')
+ devices=$(grep "^ .*[^0-9]$" < /proc/partitions | grep -v ${dev} | awk '$3 > $MIN_DISKSIZE { print $4,$3 }')
devs_found=$(echo $devices | wc -w)
if [ "$devs_found" -gt "2" ]; then