diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-01-09 02:16:10 +0159 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-01-09 02:16:10 +0159 |
commit | 35a3afdc2e83ef375291384acb61e4800374ceb6 (patch) | |
tree | 4e374a218ccb3356cd5a71ed0e30de801856907d /perl-install/bootloader.pm | |
parent | f8fd031d3e70a7f4c25f0be93e472cecc0dee00e (diff) | |
download | drakx-35a3afdc2e83ef375291384acb61e4800374ceb6.tar drakx-35a3afdc2e83ef375291384acb61e4800374ceb6.tar.gz drakx-35a3afdc2e83ef375291384acb61e4800374ceb6.tar.bz2 drakx-35a3afdc2e83ef375291384acb61e4800374ceb6.tar.xz drakx-35a3afdc2e83ef375291384acb61e4800374ceb6.zip |
Revert "only grub2 supports uefi for now"
This reverts commit 10f49c1ed61eb3d688f30c34cc5a321904f2971b.
It does not work, needs more work.
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 433e580aa..e20841951 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1241,12 +1241,10 @@ sub config_files() { sub method2text { my ($method) = @_; +{ - if_( ! is_uefi(), 'lilo-menu' => N("LILO with text menu"), + 'grub2' => N("GRUB2 with graphical menu"), 'grub-graphic' => N("GRUB with graphical menu"), 'grub-menu' => N("GRUB with text menu"), - ), - 'grub2' => N("GRUB2 with graphical menu"), }->{$method}; } |