diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/bootloader.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
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) |