From 6b311aa6e6983fc663d95ed1189e75a7362df55b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwenol=C3=A9=20Beauchesne?= Date: Wed, 26 Sep 2001 08:21:46 +0000 Subject: - Suggest /boot/efi on IA-64 for the first VFAT partition found, instead of /mnt/windows --- perl-install/install_any.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install_any.pm') diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index d49b4f452..bf40b9162 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -967,7 +967,8 @@ sub getHds { my @win = grep { isFat($_) && isFat({ type => fsedit::typeOfPart($_->{device}) }) } @{$o->{fstab}}; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { - $win[0]{mntpoint} = "/mnt/windows"; + #- Suggest /boot/efi on ia64. + $win[0]{mntpoint} = arch() =~ /ia64/ ? "/boot/efi" : "/mnt/windows"; } else { my %w; foreach (@win) { my $v = $w{$_->{device_windobe}}++; -- cgit v1.2.1