123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- config ADK_RUNTIME_HOSTNAME
- string "hostname for the embedded system"
- default "localhost"
- help
- Set your target hostname.
- config ADK_RUNTIME_SSH_PUBKEY
- string "SSH public key (root user only)"
- default ""
- help
- Paste your generated SSH public key here and it will be embedded into
- the built image, so you can use it to login instantly.
- config ADK_RUNTIME_PASSWORD
- string "root password for the embedded system"
- default "linux123"
- help
- Predefine the root password enabled in the built image.
- config ADK_RUNTIME_TMPFS_SIZE
- string "size of /tmp in memory (kB)"
- default "16384" if ADK_TARGET_SYSTEM_IBM_X40
- default "2048"
- help
- Size of /tmp in memory in Kilobyte.
- config ADK_RUNTIME_TIMEZONE
- string "timezone for the embedded system"
- default "Europe/Berlin"
- help
- Predefine the timezone for the embedded system.
- choice
- prompt "Console output on embedded system"
- default ADK_RUNTIME_CONSOLE_BOTH if ADK_TARGET_WITH_VGA
- default ADK_RUNTIME_CONSOLE_SERIAL
- config ADK_RUNTIME_CONSOLE_VGA
- bool "console output on VGA"
- help
- Start getty on VGA console. (tty1-tty6)
- config ADK_RUNTIME_CONSOLE_SERIAL
- bool "console output on serial"
- help
- Start getty on serial console. (ttyS0)
- config ADK_RUNTIME_CONSOLE_BOTH
- bool "console output on VGA and serial"
- help
- Start getty on VGA console and serial device.
- endchoice
- config ADK_RUNTIME_CONSOLE_SERIAL_SPEED
- string
- default "9600" if ADK_TARGET_SYSTEM_FON_FON2100
- default "38400" if ADK_TARGET_SYSTEM_PCENGINES_WRAP
- default "115200"
- config ADK_RUNTIME_KBD_LAYOUT
- string "keyboard layout for the embedded system"
- default ""
- depends on ADK_TARGET_WITH_INPUT
- help
- Predefine the keyboard layout for the embedded system.
- choice
- prompt "Initial login shell for the root user"
- default ADK_ROOTSH_ASH
- config ADK_ROOTSH_ASH
- select BUSYBOX_ASH
- bool "ash (busybox)"
- help
- Use the minimalistic ash variant that is part of busybox
- as standard login shell for the superuser. This is the
- default, but discouraged due to its frugality.
- config ADK_ROOTSH_BASH
- select ADK_PACKAGE_BASH
- bool "bash (GNU Bourne-Again Shell)"
- help
- Use GNU bash as standard login shell for the superuser.
- config ADK_ROOTSH_MKSH
- select ADK_PACKAGE_MKSH
- bool "mksh (MirBSD Korn Shell)"
- help
- Use mksh (a Korn Shell variant) as standard login shell
- for the superuser.
- config ADK_ROOTSH_TCSH
- select ADK_PACKAGE_TCSH
- bool "tcsh (Tenex C Shell)"
- help
- Use tcsh (a C Shell variant) as standard login shell
- for the superuser.
- config ADK_ROOTSH_ZSH
- select ADK_PACKAGE_ZSH
- bool "zsh (The Z Shell)"
- help
- Use zsh as standard login shell for the superuser.
- endchoice
- choice
- prompt "System /bin/sh (POSIX script shell)"
- default ADK_BINSH_ASH
- config ADK_BINSH_ASH
- select BUSYBOX_ASH
- bool "ash (busybox)"
- help
- Use the minimalistic ash variant that is part of busybox
- as system shell. This is the default and rather small and
- fast, but lacks scripting features.
- config ADK_BINSH_BASH
- select ADK_PACKAGE_BASH
- bool "bash (GNU Bourne-Again Shell)"
- help
- Use GNU bash as system shell. This is discouraged due to
- its size and slowness.
- config ADK_BINSH_MKSH
- select ADK_PACKAGE_MKSH
- bool "mksh (MirBSD Korn Shell)"
- help
- Use mksh (a Korn Shell variant) as system shell, which is
- both small and powerful, so quite suited for this task.
- config ADK_BINSH_ZSH
- select ADK_PACKAGE_ZSH
- bool "zsh (The Z Shell)"
- help
- Use zsh as system shell. This is probably a bad idea.
- endchoice
|