diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 4f9c678a4..6db8bb02b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- bootloader: display "ESP" in summary under UEFI - check DM really is installed, not just present in /usr/share/X11.dm.d - packages selection: o open-vm-tools is handled through rpmsrate diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index bc9fae579..418b79aed 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -872,6 +872,7 @@ sub summary { } }, }; + local $o->{bootloader}{boot} = 'ESP' if is_uefi(); push @l, { group => N("System"), label => N("Bootloader"), |