summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-07-04 18:44:59 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-07-04 18:44:59 +0000
commit017f52718b4e872371377701bc248be520dfbf9f (patch)
tree122820929515dd3eaef031ca2cc0bb9ce28337bb /perl-install
parent1c9b13091cbbd6bcc8a161db93588993f2b8b84d (diff)
downloaddrakx-backup-do-not-use-017f52718b4e872371377701bc248be520dfbf9f.tar
drakx-backup-do-not-use-017f52718b4e872371377701bc248be520dfbf9f.tar.gz
drakx-backup-do-not-use-017f52718b4e872371377701bc248be520dfbf9f.tar.bz2
drakx-backup-do-not-use-017f52718b4e872371377701bc248be520dfbf9f.tar.xz
drakx-backup-do-not-use-017f52718b4e872371377701bc248be520dfbf9f.zip
add /boot/efi in suggestions for ia64
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/fsedit.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 19c0d9888..f5089cfd1 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -35,6 +35,12 @@ use fs;
{ mntpoint => "/home", size => 100 << 11, type => 0x83, ratio => 5 },
],
);
+foreach (values %suggestions) {
+ if (arch() =~ /ia64/) {
+ @$_ = ({ mntpoint => "/boot/efi", size => 50 << 11, type => 0xb, ratio => 1, maxsize => 150 << 11 }, @$_);
+ }
+}
+
my @suggestions_mntpoints = (
"/root", "/var/ftp", "/var/www", "/boot",
arch() =~ /sparc/ ? "/mnt/sunos" : arch() =~ /ppc/ ? "/mnt/macos" : "/mnt/windows",