Config.in.runtime 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  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 "openadk"
  6. help
  7. Set your target hostname.
  8. config ADK_RUNTIME_SSH_PUBKEY
  9. string "SSH public key (root user only)"
  10. depends on ADK_PACKAGE_OPENSSH_SERVER || ADK_PACKAGE_DROPBEAR
  11. default ""
  12. help
  13. Paste your generated SSH public key here and it will be embedded into
  14. the built image, so you can use it to login instantly.
  15. config ADK_RUNTIME_PASSWORD
  16. string "root password for the embedded system"
  17. default "$1$bJoW4DmS$7fUVat.9iFSAePzA4j4Jm."
  18. help
  19. Predefine the root password enabled in the built image.
  20. Use ./host_*/usr/bin/mkcrypt to generate the hash.
  21. Default password is linux123
  22. config ADK_RUNTIME_ADDUSER
  23. bool "add an user"
  24. default n
  25. help
  26. Enable this option to add an unprivileged user.
  27. Fixed UID/GID 100 is used. A group with the same name is added.
  28. config ADK_RUNTIME_USER_NAME
  29. string "user name"
  30. default "adk"
  31. depends on ADK_RUNTIME_ADDUSER
  32. config ADK_RUNTIME_USER_PASSWORD
  33. string "user password"
  34. default "$1$bJoW4DmS$7fUVat.9iFSAePzA4j4Jm."
  35. depends on ADK_RUNTIME_ADDUSER
  36. help
  37. Predefine the user password enabled in the built image.
  38. Use ./host_*/usr/bin/mkcrypt to generate the hash.
  39. Default password is linux123
  40. config ADK_RUNTIME_USER_HOME
  41. string "user home directory"
  42. default "/home/adk"
  43. depends on ADK_RUNTIME_ADDUSER
  44. help
  45. Set the home directory to use.
  46. config ADK_RUNTIME_USER_SHELL
  47. string "user shell"
  48. default "/bin/sh"
  49. depends on ADK_RUNTIME_ADDUSER
  50. help
  51. Set the shell to use.
  52. config ADK_RUNTIME_START_SERVICES
  53. bool "start services by default"
  54. default n
  55. help
  56. Enable this option to start selected services on boot.
  57. source "target/config/Config.in.scripts"
  58. config ADK_RUNTIME_TMPFS_SIZE
  59. string "size of /tmp in memory (kB)"
  60. default "16384" if ADK_TARGET_QEMU
  61. default "16384" if ADK_TARGET_VBOX
  62. default "16384" if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  63. default "32768" if ADK_TARGET_SYSTEM_IBM_X40
  64. default "32768" if ADK_TARGET_SYSTEM_RASPBERRY_PI
  65. default "32768" if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  66. default "32768" if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  67. default "8192" if ADK_TARGET_SYSTEM_MIKROTIK_RB532
  68. default "2048"
  69. help
  70. Size of /tmp in memory in Kilobyte.
  71. config ADK_RUNTIME_TIMEZONE
  72. string "timezone for the embedded system"
  73. default "Europe/Berlin"
  74. help
  75. Predefine the timezone for the embedded system.
  76. choice
  77. prompt "bootup messages from kernel"
  78. config ADK_RUNTIME_VERBOSE_KERNEL_VGA_ONLY
  79. bool "output via VGA only"
  80. depends on ADK_TARGET_WITH_VGA
  81. config ADK_RUNTIME_VERBOSE_KERNEL_SERIAL_ONLY
  82. bool "output via serial console only"
  83. depends on ADK_TARGET_WITH_SERIAL
  84. config ADK_RUNTIME_VERBOSE_KERNEL_VGA_SERIAL
  85. bool "output via VGA and serial console"
  86. depends on ADK_TARGET_WITH_SERIAL && \
  87. ADK_TARGET_WITH_VGA
  88. help
  89. Output is via VGA and serial console.
  90. Init can use only serial via /dev/console.
  91. config ADK_RUNTIME_VERBOSE_KERNEL_SERIAL_VGA
  92. bool "output via serial console and VGA"
  93. depends on ADK_TARGET_WITH_SERIAL && \
  94. ADK_TARGET_WITH_VGA
  95. help
  96. Output is via serial console and VGA.
  97. Init can use only VGA via /dev/console.
  98. config ADK_RUNTIME_QUIET_KERNEL
  99. bool "no output from the kernel"
  100. help
  101. Make bootup quiet without messages from the kernel.
  102. endchoice
  103. choice
  104. prompt "bootup messages from initscripts"
  105. default ADK_RUNTIME_VERBOSE_INIT_VGA if ADK_TARGET_WITH_VGA
  106. default ADK_RUNTIME_VERBOSE_INIT_SERIAL
  107. config ADK_RUNTIME_VERBOSE_INIT_VGA
  108. bool "output via VGA"
  109. depends on ADK_TARGET_WITH_VGA
  110. depends on ADK_RUNTIME_VERBOSE_KERNEL_SERIAL_VGA || \
  111. ADK_RUNTIME_VERBOSE_KERNEL_VGA_ONLY || \
  112. ADK_RUNTIME_QUIET_KERNEL
  113. config ADK_RUNTIME_VERBOSE_INIT_SERIAL
  114. bool "output via serial"
  115. depends on ADK_TARGET_WITH_SERIAL
  116. depends on ADK_RUNTIME_VERBOSE_KERNEL_VGA_SERIAL || \
  117. ADK_RUNTIME_VERBOSE_KERNEL_SERIAL_ONLY || \
  118. ADK_RUNTIME_QUIET_KERNEL
  119. config ADK_RUNTIME_QUIET_INIT
  120. bool "no output"
  121. endchoice
  122. choice
  123. prompt "start getty or shell after bootup"
  124. default ADK_RUNTIME_GETTY
  125. config ADK_RUNTIME_GETTY
  126. bool "start a getty after bootup"
  127. help
  128. Start a getty after bootup.
  129. config ADK_RUNTIME_SHELL
  130. bool "start a shell after bootup"
  131. help
  132. Start a shell after bootup.
  133. config ADK_RUNTIME_NONE
  134. bool "start no shell nor getty after bootup"
  135. help
  136. Do not start a shell or getty after bootup.
  137. endchoice
  138. config ADK_RUNTIME_GETTY_VGA
  139. bool "start getty on VGA console (tty1-tty6)"
  140. depends on ADK_RUNTIME_GETTY && ADK_TARGET_WITH_VGA
  141. default y if ADK_TARGET_QEMU_WITH_GRAPHIC_ONLY
  142. default y if ADK_TARGET_QEMU_WITH_GRAPHIC
  143. default y if ADK_TARGET_SYSTEM_RASPBERRY_PI
  144. default y if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  145. default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  146. default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  147. default y if ADK_TARGET_SYSTEM_IBM_X40
  148. default y if ADK_TARGET_SYSTEM_ARANYM_M68K
  149. default y if ADK_TARGET_VBOX
  150. default n
  151. help
  152. Start getty on VGA console. (tty1-tty6)
  153. config ADK_RUNTIME_GETTY_SERIAL
  154. bool "start getty on serial console"
  155. depends on ADK_RUNTIME_GETTY && ADK_TARGET_WITH_SERIAL
  156. default n if ADK_TARGET_QEMU_WITH_GRAPHIC_ONLY
  157. default n if ADK_TARGET_QEMU_WITH_GRAPHIC
  158. default n if ADK_TARGET_SYSTEM_RASPBERRY_PI
  159. default n if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  160. default n if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  161. default n if ADK_TARGET_SYSTEM_IBM_X40
  162. default n if ADK_TARGET_SYSTEM_ARANYM_M68K
  163. default n if ADK_TARGET_VBOX
  164. default y
  165. help
  166. Start getty on serial console.
  167. config ADK_RUNTIME_CONSOLE_VGA_DEVICE
  168. string "VGA console device"
  169. depends on ADK_TARGET_WITH_VGA
  170. default "tty1" if ADK_TARGET_SYSTEM_RASPBERRY_PI
  171. default "tty1" if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  172. default "tty0"
  173. config ADK_RUNTIME_CONSOLE_SERIAL_DEVICE
  174. string "serial console device"
  175. depends on ADK_TARGET_WITH_SERIAL
  176. default "hvc0" if ADK_TARGET_SYSTEM_QEMU_PPC64
  177. default "ttyUL0" if ADK_TARGET_QEMU_MICROBLAZE_MODEL_S3ADSP1800
  178. default "ttyAMA0" if ADK_TARGET_QEMU_ARM_MODEL_VERSATILEPB || ADK_TARGET_QEMU_ARM_MODEL_VEXPRESS_A9 || ADK_TARGET_SYSTEM_ARM_FM || ADK_TARGET_SYSTEM_QEMU_AARCH64
  179. default "ttySC1" if ADK_TARGET_SYSTEM_QEMU_SH
  180. default "ttymxc0" if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  181. default "ttyAMA0" if ADK_TARGET_SYSTEM_RASPBERRY_PI
  182. default "ttyAMA0" if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  183. default "ttyS0"
  184. config ADK_RUNTIME_CONSOLE_SERIAL_SPEED
  185. string "serial console speed"
  186. depends on ADK_TARGET_WITH_SERIAL
  187. default "9600" if ADK_TARGET_SYSTEM_FON_FON2100
  188. default "38400" if ADK_TARGET_SYSTEM_PCENGINES_WRAP
  189. default "115200"
  190. config ADK_RUNTIME_KBD_LAYOUT
  191. string "keyboard layout for the embedded system"
  192. depends on ADK_TARGET_WITH_INPUT
  193. default "de-latin1-nodeadkeys"
  194. help
  195. Predefine the keyboard layout for the embedded system.
  196. For example use de-latin1-nodeadkeys.
  197. choice
  198. prompt "initial login shell for the root user"
  199. default ADK_ROOTSH_SASH if ADK_TARGET_UCLINUX
  200. default ADK_ROOTSH_MKSH
  201. config ADK_ROOTSH_MKSH
  202. bool "mksh (MirBSD Korn Shell)"
  203. select ADK_PACKAGE_MKSH if !ADK_TOOLCHAIN_ONLY
  204. help
  205. Use mksh (a Korn Shell variant) as standard login shell
  206. for the superuser.
  207. config ADK_ROOTSH_SASH
  208. bool "sash (Shell compatible with non-MMU systems)"
  209. select ADK_PACKAGE_SASH if !ADK_TOOLCHAIN_ONLY
  210. help
  211. standalone shell.
  212. config ADK_ROOTSH_HUSH
  213. bool "hush (Shell compatible with non-MMU systems)"
  214. select ADK_PACKAGE_HUSH if !ADK_TOOLCHAIN_ONLY
  215. help
  216. hush shell from busybox.
  217. config ADK_ROOTSH_ASH
  218. bool "ash (busybox)"
  219. select BUSYBOX_ASH
  220. help
  221. Use the minimalistic ash variant that is part of busybox
  222. as standard login shell for the superuser. This is the
  223. default, but discouraged due to its frugality.
  224. config ADK_ROOTSH_BASH
  225. bool "bash (GNU Bourne-Again Shell)"
  226. select ADK_PACKAGE_BASH
  227. help
  228. Use GNU bash as standard login shell for the superuser.
  229. config ADK_ROOTSH_TCSH
  230. bool "tcsh (Tenex C Shell)"
  231. select ADK_PACKAGE_TCSH
  232. help
  233. Use tcsh (a C Shell variant) as standard login shell
  234. for the superuser.
  235. config ADK_ROOTSH_ZSH
  236. bool "zsh (The Z Shell)"
  237. select ADK_PACKAGE_ZSH
  238. help
  239. Use zsh as standard login shell for the superuser.
  240. endchoice
  241. choice
  242. prompt "system /bin/sh (POSIX script shell)"
  243. default ADK_BINSH_SASH if ADK_TARGET_UCLINUX
  244. default ADK_BINSH_MKSH
  245. config ADK_BINSH_MKSH
  246. bool "mksh (MirBSD Korn Shell)"
  247. select ADK_PACKAGE_MKSH if !ADK_TOOLCHAIN_ONLY
  248. help
  249. Use mksh (a Korn Shell variant) as system shell, which is
  250. both small and powerful, so quite suited for this task.
  251. config ADK_BINSH_SASH
  252. bool "sash (Standalone Shell)"
  253. select ADK_PACKAGE_SASH if !ADK_TOOLCHAIN_ONLY
  254. help
  255. hush shell.
  256. config ADK_BINSH_HUSH
  257. bool "hush (busybox)"
  258. select ADK_PACKAGE_HUSH if !ADK_TOOLCHAIN_ONLY
  259. help
  260. hush shell.
  261. config ADK_BINSH_ASH
  262. bool "ash (busybox)"
  263. select BUSYBOX_ASH
  264. help
  265. Use the minimalistic ash variant that is part of busybox
  266. as system shell. This is the default and rather small and
  267. fast, but lacks scripting features.
  268. config ADK_BINSH_BASH
  269. bool "bash (GNU Bourne-Again Shell)"
  270. select ADK_PACKAGE_BASH
  271. help
  272. Use GNU bash as system shell. This is discouraged due to
  273. its size and slowness.
  274. config ADK_BINSH_ZSH
  275. bool "zsh (The Z Shell)"
  276. select ADK_PACKAGE_ZSH
  277. help
  278. Use zsh as system shell. This is probably a bad idea.
  279. endchoice
  280. # workaround for USB ethernet f.e. Raspberry Pi2
  281. config ADK_RUNTIME_WAIT_FOR_ETHERNET
  282. bool
  283. default y if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  284. config ADK_SIMPLE_NETWORK_CONFIG
  285. bool "simple network configuration"
  286. help
  287. Manually change network config
  288. menu "eth0 Configuration"
  289. depends on ADK_SIMPLE_NETWORK_CONFIG
  290. choice
  291. prompt "Type"
  292. default ADK_SIMPLE_NETWORK_CONFIG_ETH0_TYPE_MANUAL
  293. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC
  294. bool "static IP configuration"
  295. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_DHCP
  296. bool "DHCP"
  297. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_NONE
  298. bool "no configuration"
  299. endchoice
  300. choice
  301. prompt "configure default Gateway"
  302. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC
  303. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC_WITH_GW
  304. bool "with Gateway"
  305. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC_WITHOUT_GW
  306. bool "without Gateway"
  307. endchoice
  308. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_IP
  309. string "IP Address"
  310. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC
  311. default "10.0.0.2"
  312. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_NM
  313. string "Netmask"
  314. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC
  315. default "255.255.255.0"
  316. config ADK_SIMPLE_NETWORK_CONFIG_ETH0_GW
  317. string "Gateway"
  318. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH0_STATIC_WITH_GW
  319. default "10.0.0.1"
  320. endmenu
  321. menu "wlan0 Configuration"
  322. depends on ADK_SIMPLE_NETWORK_CONFIG
  323. depends on ADK_TARGET_WITH_WIFI
  324. choice
  325. prompt "Type"
  326. default ADK_SIMPLE_NETWORK_CONFIG_WLAN0_NONE
  327. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_NONE
  328. bool "No configuration"
  329. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC
  330. bool "static IP configuration"
  331. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_DHCP
  332. bool "DHCP"
  333. endchoice
  334. choice
  335. prompt "configure default Gateway"
  336. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC
  337. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC_WITH_GW
  338. bool "with Gateway"
  339. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC_WITHOUT_GW
  340. bool "without Gateway"
  341. endchoice
  342. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_IP
  343. string "IP Address"
  344. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC
  345. default "192.168.1.2"
  346. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_NM
  347. string "Netmask"
  348. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC
  349. default "255.255.255.0"
  350. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_GW
  351. string "Gateway"
  352. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC_WITH_GW
  353. default "192.168.1.1"
  354. endmenu
  355. choice
  356. prompt "WLAN Security"
  357. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_STATIC || ADK_SIMPLE_NETWORK_CONFIG_WLAN0_DHCP
  358. default ADK_SIMPLE_NETWORK_CONFIG_WLAN0_NOSEC
  359. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_NOSEC
  360. bool "No security"
  361. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_WPA2
  362. bool "WPA2"
  363. endchoice
  364. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_WPA2_SSID
  365. string "SSID"
  366. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_WPA2
  367. default ""
  368. config ADK_SIMPLE_NETWORK_CONFIG_WLAN0_WPA2_PW
  369. string "Password"
  370. depends on ADK_SIMPLE_NETWORK_CONFIG_WLAN0_WPA2
  371. default ""
  372. menu "eth1 Configuration"
  373. depends on ADK_SIMPLE_NETWORK_CONFIG && \
  374. ADK_TARGET_SYSTEM_MIKROTIK_RB532
  375. choice
  376. prompt "Type"
  377. default ADK_SIMPLE_NETWORK_CONFIG_ETH1_NONE
  378. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC
  379. bool "static IP configuration"
  380. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_DHCP
  381. bool "DHCP"
  382. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_NONE
  383. bool "no configuration"
  384. endchoice
  385. choice
  386. prompt "configure default Gateway"
  387. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC
  388. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC_WITH_GW
  389. bool "with Gateway"
  390. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC_WITHOUT_GW
  391. bool "without Gateway"
  392. endchoice
  393. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_IP
  394. string "IP Address"
  395. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC
  396. default "172.16.0.2"
  397. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_NM
  398. string "Netmask"
  399. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC
  400. default "255.255.0.0"
  401. config ADK_SIMPLE_NETWORK_CONFIG_ETH1_GW
  402. string "Gateway"
  403. depends on ADK_SIMPLE_NETWORK_CONFIG_ETH1_STATIC_WITH_GW
  404. default "172.16.0.1"
  405. endmenu
  406. config ADK_SIMPLE_NETWORK_CONFIG_NS
  407. string "Nameserver"
  408. depends on ADK_SIMPLE_NETWORK_CONFIG
  409. depends on !ADK_SIMPLE_NETWORK_CONFIG_ETH0_DHCP
  410. depends on !ADK_SIMPLE_NETWORK_CONFIG_ETH1_DHCP
  411. depends on !ADK_SIMPLE_NETWORK_CONFIG_WLAN0_DHCP
  412. default "10.0.0.1"
  413. config ADK_SIMPLE_NETWORK_CONFIG_PROXY
  414. string "HTTP-Proxy (f.e. http://10.0.0.2:8080)"
  415. depends on ADK_SIMPLE_NETWORK_CONFIG
  416. default ""