summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-01-08 20:51:44 +0159
committerThomas Backlund <tmb@mageia.org>2015-01-08 20:51:44 +0159
commit5fd7be6bb8822a8434dcf667482771b2753a8b8d (patch)
tree420580f1e32cd1de8e65543836f2a9beff130d82 /perl-install/fsedit.pm
parentac25be0df4b079dbe65b88e89f51a6e5fd1dee39 (diff)
downloaddrakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar
drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar.gz
drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar.bz2
drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar.xz
drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.zip
we need /boot/EFI on uefi systems
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 47cb1c051..99a13f0ef 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -40,8 +40,8 @@ use fs;
],
);
foreach (values %suggestions) {
- if (arch() =~ /ia64/) {
- @$_ = ({ mntpoint => "/boot/efi", size => MB(50), pt_type => 0xef, ratio => 1, maxsize => MB(150) }, @$_);
+ if ( is_uefi() ) {
+ @$_ = ({ mntpoint => "/boot/EFI", size => MB(100), pt_type => 0xef, ratio => 1, maxsize => MB(300) }, @$_);
}
}