From 2af09ca2068473d1df9d312b538c32e267ccca87 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 16 Feb 2009 18:01:56 +0000 Subject: (install) enable having /boot as ext4 --- perl-install/NEWS | 3 +++ perl-install/bootloader.pm | 2 +- perl-install/install/NEWS | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) (limited to 'perl-install') 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) -- cgit v1.2.1