Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. menu "EFI (Extensible Firmware Interface) Support"
  2. depends on EFI
  3. config EFI_VARS
  4. tristate "EFI Variable Support via sysfs"
  5. depends on EFI
  6. default n
  7. help
  8. If you say Y here, you are able to get EFI (Extensible Firmware
  9. Interface) variable information via sysfs. You may read,
  10. write, create, and destroy EFI variables through this interface.
  11. Note that using this driver in concert with efibootmgr requires
  12. at least test release version 0.5.0-test3 or later, which is
  13. available from Matt Domsch's website located at:
  14. <http://linux.dell.com/efibootmgr/testing/efibootmgr-0.5.0-test3.tar.gz>
  15. Subsequent efibootmgr releases may be found at:
  16. <http://linux.dell.com/efibootmgr>
  17. config EFI_VARS_PSTORE
  18. tristate "Register efivars backend for pstore"
  19. depends on EFI_VARS && PSTORE
  20. default y
  21. help
  22. Say Y here to enable use efivars as a backend to pstore. This
  23. will allow writing console messages, crash dumps, or anything
  24. else supported by pstore to EFI variables.
  25. config EFI_VARS_PSTORE_DEFAULT_DISABLE
  26. bool "Disable using efivars as a pstore backend by default"
  27. depends on EFI_VARS_PSTORE
  28. default n
  29. help
  30. Saying Y here will disable the use of efivars as a storage
  31. backend for pstore by default. This setting can be overridden
  32. using the efivars module's pstore_disable parameter.
  33. endmenu