blob: 88bfee27259ff297628c88f0a749b73ad7f24ca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
# 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 "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
|