diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-12-07 11:35:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-12-07 11:35:03 +0000 |
commit | 828f1cb5d26005dbcc25f07f8ca7b334ecc7b84f (patch) | |
tree | e3e0591cbe4709f3ad47306c38a0bbfa01971ff0 | |
parent | 8c19d06b2710d536e4134ed1c42d6ac3ff026866 (diff) | |
download | drakx-828f1cb5d26005dbcc25f07f8ca7b334ecc7b84f.tar drakx-828f1cb5d26005dbcc25f07f8ca7b334ecc7b84f.tar.gz drakx-828f1cb5d26005dbcc25f07f8ca7b334ecc7b84f.tar.bz2 drakx-828f1cb5d26005dbcc25f07f8ca7b334ecc7b84f.tar.xz drakx-828f1cb5d26005dbcc25f07f8ca7b334ecc7b84f.zip |
(detectloader) make it return 'grub2' when grub2 is installed
rationale: rosa work is incomplete
-rwxr-xr-x | perl-install/standalone/bootloader-config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/standalone/bootloader-config b/perl-install/standalone/bootloader-config index 4f543131e..ef9e10a16 100755 --- a/perl-install/standalone/bootloader-config +++ b/perl-install/standalone/bootloader-config @@ -372,5 +372,6 @@ sub remove_splash() { } sub detectloader() { + print "grub2\n" if $have_grub2; print uc(bootloader::main_method($bootloader->{method})), "\n" if $bootloader; } |