diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/bootloader.pm | 4 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index adc03e119..3c12898e2 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - drakboot: + o allow installing grub2 on XFS / o make clear grub2 is installed on ESP under UEFI - finish-install: o drop reload-dm hack diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index d6324a401..59172e161 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2222,10 +2222,6 @@ Writes back the boot loader config. Calls the proper write_XYZ() function. sub install { my ($bootloader, $all_hds) = @_; - if (my $part = fs::get::device2part($bootloader->{boot}, [ fs::get::fstab($all_hds) ])) { - die N("You cannot install the bootloader on a %s partition\n", $part->{fs_type}) - if $part->{fs_type} eq 'xfs'; - } $bootloader->{keytable} = keytable($bootloader->{keytable}) if $bootloader->{method} eq 'lilo'; action($bootloader, 'install', $all_hds); } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 4db5b2ea2..eedb7dd3b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - bootloader configuration: + o allow installing grub2 on XFS / o make clear grub2 is installed on ESP under UEFI o make sure we only offer lilo/grub choice on upgrades only |