Kconfig 789 B

1234567891011121314151617181920212223242526272829
  1. config OLPC_EC
  2. select REGULATOR
  3. bool
  4. menuconfig OLPC_XO175
  5. bool "Platform support for OLPC XO 1.75 hardware"
  6. depends on ARCH_MMP || COMPILE_TEST
  7. help
  8. Say Y here to get to see options for the ARM-based OLPC platform.
  9. This option alone does not add any kernel code.
  10. Unless you have an OLPC XO laptop, you will want to say N.
  11. if OLPC_XO175
  12. config OLPC_XO175_EC
  13. tristate "OLPC XO 1.75 Embedded Controller"
  14. depends on SPI_SLAVE
  15. depends on INPUT
  16. depends on POWER_SUPPLY
  17. select OLPC_EC
  18. help
  19. Include support for the OLPC XO Embedded Controller (EC). The EC
  20. provides various platform services, including support for the power,
  21. button, restart, shutdown and battery charging status.
  22. Unless you have an OLPC XO laptop, you will want to say N.
  23. endif # OLPC_XO175