summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-02-16 18:01:56 +0000
committerThierry Vignaud <tv@mandriva.org>2009-02-16 18:01:56 +0000
commit2af09ca2068473d1df9d312b538c32e267ccca87 (patch)
treea4c16cb62c873513879ce3e7542883230ff6f5a9
parent8d3435f66393b7e5808e7caf7cf6a39aa30b7c2b (diff)
downloaddrakx-2af09ca2068473d1df9d312b538c32e267ccca87.tar
drakx-2af09ca2068473d1df9d312b538c32e267ccca87.tar.gz
drakx-2af09ca2068473d1df9d312b538c32e267ccca87.tar.bz2
drakx-2af09ca2068473d1df9d312b538c32e267ccca87.tar.xz
drakx-2af09ca2068473d1df9d312b538c32e267ccca87.zip
(install) enable having /boot as ext4
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/bootloader.pm2
-rw-r--r--perl-install/install/NEWS2
3 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 477c08d6d..d22827785 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- drakboot
+ o do not crash b/c ext4 was forbidden for /boot (#47853)
+
Version 11.88 - 16 February 2009
- mygtk2 layer:
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index d92344a22..10f8062da 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -1870,7 +1870,7 @@ sub install {
if (my $part = fs::get::device2part($bootloader->{boot}, [ fs::get::fstab($all_hds) ])) {
die N("You can not install the bootloader on a %s partition\n", $part->{fs_type})
- if member($part->{fs_type}, qw(ext4 ext4dev xfs));
+ if $part->{fs_type} eq 'xfs';
}
$bootloader->{keytable} = keytable($bootloader->{keytable});
action($bootloader, 'install', $all_hds);
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index ebcb7bd1d..5fdf10b37 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- enable having /boot as ext4
+
Version 11.88.1 - 16 February 2009
- correctly handle new msec-based settings during installation (#47822)