Kconfig 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Copyright (C) 2018 EETS GmbH - http://www.eets.ch/
  2. #
  3. # SPDX-License-Identifier: GPL-2.0+
  4. #
  5. if TARGET_PDU001
  6. config SYS_BOARD
  7. default "pdu001"
  8. config SYS_VENDOR
  9. default "eets"
  10. config SYS_SOC
  11. default "am33xx"
  12. config SYS_CONFIG_NAME
  13. default "pdu001"
  14. choice
  15. prompt "State of Run LED"
  16. default RUN_LED_RED
  17. help
  18. The PDU001 has a bi-color (red/green) LED labeled 'Run' which
  19. can be used to indicate the operating state of the board. By
  20. default it will be lit red by U-Boot. Later in the start-up
  21. process it can be changed to green (or heartbeat or anything else)
  22. by the kernel or some other software.
  23. config RUN_LED_RED
  24. bool
  25. prompt "Red"
  26. help
  27. Lit Run LED red.
  28. config RUN_LED_GREEN
  29. bool
  30. prompt "Green"
  31. help
  32. Lit Run LED green.
  33. config RUN_LED_OFF
  34. bool
  35. prompt "Off"
  36. help
  37. Do not lit Run LED.
  38. endchoice
  39. endif