Config.in.runtime 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 VGA 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.
  57. choice
  58. prompt "Initial login shell for the root user"
  59. default ADK_ROOTSH_ASH
  60. config ADK_ROOTSH_ASH
  61. select BUSYBOX_ASH
  62. bool "ash (busybox)"
  63. help
  64. Use the minimalistic ash variant that is part of busybox
  65. as standard login shell for the superuser. This is the
  66. default, but discouraged due to its frugality.
  67. config ADK_ROOTSH_BASH
  68. select ADK_PACKAGE_BASH
  69. bool "bash (GNU Bourne-Again Shell)"
  70. help
  71. Use GNU bash as standard login shell for the superuser.
  72. config ADK_ROOTSH_MKSH
  73. select ADK_PACKAGE_MKSH
  74. bool "mksh (MirBSD Korn Shell)"
  75. help
  76. Use mksh (a Korn Shell variant) as standard login shell
  77. for the superuser.
  78. config ADK_ROOTSH_TCSH
  79. select ADK_PACKAGE_TCSH
  80. bool "tcsh (Tenex C Shell)"
  81. help
  82. Use tcsh (a C Shell variant) as standard login shell
  83. for the superuser.
  84. config ADK_ROOTSH_ZSH
  85. select ADK_PACKAGE_ZSH
  86. bool "zsh (The Z Shell)"
  87. help
  88. Use zsh as standard login shell for the superuser.
  89. endchoice
  90. choice
  91. prompt "System /bin/sh (POSIX script shell)"
  92. default ADK_BINSH_ASH
  93. config ADK_BINSH_ASH
  94. select BUSYBOX_ASH
  95. bool "ash (busybox)"
  96. help
  97. Use the minimalistic ash variant that is part of busybox
  98. as system shell. This is the default and rather small and
  99. fast, but lacks scripting features.
  100. config ADK_BINSH_BASH
  101. select ADK_PACKAGE_BASH
  102. bool "bash (GNU Bourne-Again Shell)"
  103. help
  104. Use GNU bash as system shell. This is discouraged due to
  105. its size and slowness.
  106. config ADK_BINSH_MKSH
  107. select ADK_PACKAGE_MKSH
  108. bool "mksh (MirBSD Korn Shell)"
  109. help
  110. Use mksh (a Korn Shell variant) as system shell, which is
  111. both small and powerful, so quite suited for this task.
  112. config ADK_BINSH_ZSH
  113. select ADK_PACKAGE_ZSH
  114. bool "zsh (The Z Shell)"
  115. help
  116. Use zsh as system shell. This is probably a bad idea.
  117. endchoice