summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-07-28 03:48:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-07-28 03:48:47 +0000
commitaf0e7294864d848be588f3dc46807a4c66dbdb19 (patch)
tree282cfbd87d45b0c21592095e242a5c1986780b46
parent4b55e527e5fc5b5c212b49faab1cf3b641f0e1f6 (diff)
downloaddrakx-backup-do-not-use-af0e7294864d848be588f3dc46807a4c66dbdb19.tar
drakx-backup-do-not-use-af0e7294864d848be588f3dc46807a4c66dbdb19.tar.gz
drakx-backup-do-not-use-af0e7294864d848be588f3dc46807a4c66dbdb19.tar.bz2
drakx-backup-do-not-use-af0e7294864d848be588f3dc46807a4c66dbdb19.tar.xz
drakx-backup-do-not-use-af0e7294864d848be588f3dc46807a4c66dbdb19.zip
don't set mount point /mnt/windows for removable devices
-rw-r--r--perl-install/install_any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index fdfe55111..49dd76a57 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -1120,7 +1120,7 @@ sub getHds {
$o->{fstab} = [ fsedit::get_really_all_fstab($all_hds) ];
fs::merge_info_from_mtab($o->{fstab});
- my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) } @{$o->{fstab}};
+ my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} } @{$o->{fstab}};
log::l("win parts: ", join ",", map { $_->{device} } @win) if @win;
if (@win == 1) {
#- Suggest /boot/efi on ia64.