X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2FKconfig;h=f7180a98c0aabd91e8d68fcfd9f95f8855aa96bb;hb=3008bbadcbbb64dab0472e1724744c37b4094aa9;hp=c165d932a7ee444fe3347567f5dc58e7533ad7d2;hpb=aff6dc21499295fedae35e52bc906a22831df323;p=coreboot.git diff --git a/src/Kconfig b/src/Kconfig index c165d932a..f7180a98c 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -112,6 +112,21 @@ config INCLUDE_CONFIG_FILE help Include in CBFS the coreboot config file that was used to compile the ROM image +config EARLY_CBMEM_INIT + bool "Initialize CBMEM while in ROM stage" + default n + help + Make coreboot initialize the cbmem structures while running in rom + stage. This could be useful when the rom stage wants to communicate + some, for instance, execution timestamps. + +config COLLECT_TIMESTAMPS + bool "Create a table of timestamps collected during boot" + depends on EARLY_CBMEM_INIT + help + Make coreboot create a table of timer id/timer value pairs to + allow measuring time spent at different phases of the boot + process. endmenu source src/mainboard/Kconfig @@ -239,6 +254,10 @@ config IOAPIC bool default n +config TPM + bool + default n + # TODO: Can probably be removed once all chipsets have kconfig options for it. config VIDEO_MB int @@ -570,7 +589,7 @@ menu "Debugging" # TODO: Better help text and detailed instructions. config GDB_STUB bool "GDB debugging support" - default y + default n help If enabled, you will be able to set breakpoints for gdb debugging. See src/arch/x86/lib/c_start.S for details. @@ -923,3 +942,4 @@ config POWER_BUTTON_IS_OPTIONAL Internal option that controls ENABLE_POWER_BUTTON visibility. source src/Kconfig.deprecated_options +source src/vendorcode/Kconfig