Kconfig 904 B

12345678910111213141516171819202122232425262728293031
  1. config GOOGLE_FIRMWARE
  2. bool "Google Firmware Drivers"
  3. depends on X86
  4. default n
  5. help
  6. These firmware drivers are used by Google's servers. They are
  7. only useful if you are working directly on one of their
  8. proprietary servers. If in doubt, say "N".
  9. menu "Google Firmware Drivers"
  10. depends on GOOGLE_FIRMWARE
  11. config GOOGLE_SMI
  12. tristate "SMI interface for Google platforms"
  13. depends on ACPI && DMI && EFI
  14. select EFI_VARS
  15. help
  16. Say Y here if you want to enable SMI callbacks for Google
  17. platforms. This provides an interface for writing to and
  18. clearing the EFI event log and reading and writing NVRAM
  19. variables.
  20. config GOOGLE_MEMCONSOLE
  21. tristate "Firmware Memory Console"
  22. depends on DMI
  23. help
  24. This option enables the kernel to search for a firmware log in
  25. the EBDA on Google servers. If found, this log is exported to
  26. userland in the file /sys/firmware/log.
  27. endmenu