Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Platform support for Chrome OS hardware (Chromebooks and Chromeboxes)
  3. #
  4. menuconfig CHROME_PLATFORMS
  5. bool "Platform support for Chrome hardware"
  6. depends on X86
  7. ---help---
  8. Say Y here to get to see options for platform support for
  9. various Chromebooks and Chromeboxes. This option alone does
  10. not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if CHROME_PLATFORMS
  13. config CHROMEOS_LAPTOP
  14. tristate "Chrome OS Laptop"
  15. depends on I2C
  16. depends on DMI
  17. ---help---
  18. This driver instantiates i2c and smbus devices such as
  19. light sensors and touchpads.
  20. If you have a supported Chromebook, choose Y or M here.
  21. The module will be called chromeos_laptop.
  22. config CHROMEOS_PSTORE
  23. tristate "Chrome OS pstore support"
  24. ---help---
  25. This module instantiates the persistent storage on x86 ChromeOS
  26. devices. It can be used to store away console logs and crash
  27. information across reboots.
  28. The range of memory used is 0xf00000-0x1000000, traditionally
  29. the memory used to back VGA controller memory.
  30. If you have a supported Chromebook, choose Y or M here.
  31. The module will be called chromeos_pstore.
  32. endif # CHROMEOS_PLATFORMS