Enable coreboot information commands even when not loaded as

coreboot payload (e.g. when loaded from SeaBIOS-as-payload).
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-06-16 01:57:55 +02:00
parent 5027af38cf
commit e6930a454d
5 changed files with 105 additions and 62 deletions

View file

@ -170,6 +170,7 @@ kernel = {
i386_qemu = kern/i386/qemu/mmap.c;
i386_coreboot = kern/i386/coreboot/mmap.c;
i386_coreboot = kern/i386/coreboot/cbtable.c;
i386_multiboot = kern/i386/multiboot_mmap.c;
@ -558,22 +559,33 @@ module = {
enable = x86;
};
module = {
name = cbtable;
common = kern/i386/coreboot/cbtable.c;
enable = i386_pc;
enable = i386_efi;
enable = i386_qemu;
enable = i386_multiboot;
enable = i386_ieee1275;
enable = x86_64_efi;
};
module = {
name = cbtime;
common = commands/i386/coreboot/cb_timestamps.c;
enable = i386_coreboot;
enable = x86;
};
module = {
name = cbls;
common = commands/i386/coreboot/cbls.c;
enable = i386_coreboot;
enable = x86;
};
module = {
name = cbmemc;
common = term/i386/coreboot/cbmemc.c;
enable = i386_coreboot;
enable = x86;
};
module = {