New commands cbmemc, lscoreboot, coreboot_boottime to inspect

coreboot tables content. Support for cbmemc.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-03-20 17:13:31 +01:00
parent ef8810e9f3
commit cc19857a2a
10 changed files with 446 additions and 5 deletions

View file

@ -518,6 +518,24 @@ module = {
enable = x86;
};
module = {
name = cbtime;
common = commands/i386/coreboot/cb_timestamps.c;
enable = i386_coreboot;
};
module = {
name = cbls;
common = commands/i386/coreboot/cbls.c;
enable = i386_coreboot;
};
module = {
name = cbmemc;
common = term/i386/coreboot/cbmemc.c;
enable = i386_coreboot;
};
module = {
name = regexp;
common = commands/regexp.c;