Config.in.runtime 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 "localhost"
  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_TMPFS_SIZE
  20. string "size of /tmp in memory (kB)"
  21. default "16384" if ADK_TARGET_SYSTEM_IBM_X40
  22. default "2048"
  23. help
  24. Size of /tmp in memory in Kilobyte.
  25. config ADK_RUNTIME_TIMEZONE
  26. string "timezone for the embedded system"
  27. default "Europe/Berlin"
  28. help
  29. Predefine the timezone for the embedded system.
  30. choice
  31. prompt "Console output on embedded system"
  32. default ADK_RUNTIME_CONSOLE_BOTH if ADK_TARGET_WITH_VGA
  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
  47. config ADK_RUNTIME_CONSOLE_SERIAL_SPEED
  48. string
  49. default "38400" if ADK_TARGET_SYSTEM_PCENGINES_WRAP
  50. default "115200"
  51. config ADK_RUNTIME_KBD_LAYOUT
  52. string "keyboard layout for the embedded system"
  53. default ""
  54. depends on ADK_TARGET_WITH_INPUT
  55. help
  56. Predefine the keyboard layout for the embedded system.