Kconfig 748 B

12345678910111213141516171819202122232425262728
  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. endif # CHROMEOS_PLATFORMS