Config.in.runtime 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. config ADK_RUNTIME_HOSTNAME
  4. string "hostname for the embedded system"
  5. default "linux"
  6. help
  7. Set your target hostname.
  8. config ADK_RUNTIME_SSH_PUBKEY
  9. string "SSH public key (root user only)"
  10. default ""
  11. help
  12. Paste your generated SSH public key here and it will be embedded into
  13. the built image, so you can use it to login instantly.
  14. config ADK_RUNTIME_PASSWORD
  15. string "root password for the embedded system"
  16. default "linux123"
  17. help
  18. Predefine the root password enabled in the built image.
  19. config ADK_RUNTIME_TIMEZONE
  20. string "timezone for the embedded system"
  21. default "Europe/Berlin"
  22. help
  23. Predefine the timezone for the embedded system.
  24. config ADK_RUNTIME_KBD_LAYOUT
  25. string "keyboard layout for the embedded system"
  26. default ""
  27. depends on ADK_TARGET_WITH_INPUT
  28. help
  29. Predefine the keyboard layout for the embedded system.
  30. choice
  31. prompt "Console output on embedded system"
  32. default ADK_RUNTIME_CONSOLE_VGA if ADK_HARDWARE_IBM_X40
  33. default ADK_RUNTIME_CONSOLE_SERIAL
  34. config ADK_RUNTIME_CONSOLE_VGA
  35. bool "console output on VGA"
  36. help
  37. Start getty on VGA console. (tty1-tty6)
  38. config ADK_RUNTIME_CONSOLE_SERIAL
  39. bool "console output on serial"
  40. help
  41. Start getty on serial console. (ttyS0)
  42. config ADK_RUNTIME_CONSOLE_BOTH
  43. bool "console output on console and serial"
  44. help
  45. Start getty on VGA console and serial device.
  46. endchoice