Config.in.runtime 14 KB

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