Kconfig 946 B

12345678910111213141516171819202122232425262728293031323334353637
  1. choice
  2. prompt "LCD backlight control"
  3. optional
  4. default S5P4418_ONEWIRE
  5. config S5P4418_ONEWIRE
  6. bool "I2C / 1-Wire"
  7. help
  8. This enables LCD-Backlight control for FriendlyARM LCD-panels.
  9. I2C is used if available, otherwise 1-Wire is used.
  10. config PWM_NX
  11. bool "PWM"
  12. help
  13. This enables LCD-Backlight control via PWM.
  14. endchoice
  15. config ROOT_DEV
  16. int "ROOT_DEV"
  17. help
  18. Environment variable rootdev is set to this value if env. var. firstboot
  19. does not exist. Otherwise rootdev is set to the MMC boot device. rootdev
  20. determines (together with env. var. bootpart) where the OS (linux) is
  21. booted from.
  22. config BOOT_PART
  23. int "BOOT_PART"
  24. help
  25. Environment variable bootpart is set to this value. bootpart determines
  26. (together with env. var. rootdev) where the OS (linux) is booted from.
  27. config ROOT_PART
  28. int "ROOT_PART"
  29. help
  30. Environment variable rootpart is set to this value.
  31. source "board/friendlyarm/nanopi2/Kconfig"