* grub-core/Makefile.core.def (legacycfg): Enable on EFI.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-20 13:46:58 +02:00
parent 872dac835c
commit ec2dd17919
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-04-20 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/Makefile.core.def (legacycfg): Enable on EFI.
2013-04-20 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/lib/efi/relocator.c (grub_relocator_firmware_alloc_region):

View File

@ -1856,7 +1856,12 @@ module = {
common = commands/legacycfg.c;
common = lib/legacy_parse.c;
emu = lib/i386/pc/vesa_modes_table.c;
i386_efi = lib/i386/pc/vesa_modes_table.c;
x86_64_efi = lib/i386/pc/vesa_modes_table.c;
enable = i386_pc;
enable = i386_efi;
enable = x86_64_efi;
enable = emu;
};