Kconfig 909 B

123456789101112131415161718192021222324252627282930313233
  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
  14. select EFI
  15. select EFI_VARS
  16. help
  17. Say Y here if you want to enable SMI callbacks for Google
  18. platforms. This provides an interface for writing to and
  19. clearing the EFI event log and reading and writing NVRAM
  20. variables.
  21. config GOOGLE_MEMCONSOLE
  22. tristate "Firmware Memory Console"
  23. depends on DMI
  24. help
  25. This option enables the kernel to search for a firmware log in
  26. the EBDA on Google servers. If found, this log is exported to
  27. userland in the file /sys/firmware/log.
  28. endmenu