summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
blob: 30738e2cb8a0b5df725f689bf111079a7d97648d (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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188

config GREGORIAN_CALENDER
	bool

config HAS_KALLSYMS
	bool

config HAS_MODULE
	bool

menu "General Settings              "

config BOARDINFO
	string

config TEXT_BASE
	prompt "TEXT_BASE"
	hex
	default ARCH_TEXT_BASE
	help
	  The Address U-Boot gets linked at.

config BROKEN
	bool
	prompt "Prompt for broken or incomplete code"

config EXPERIMENTAL
	bool
	prompt "Prompt for experimental code"

config MODULE
	depends on HAS_MODULE
	depends on EXPERIMENTAL
	bool "module support"
	help
	  This option enables support for loadable modules via insmod. Module
	  support is quite experimental at the moment. There is no convenient
	  way to compile modules and the list of exported symbols to actually
	  make use of modules is short to nonexistent

config KALLSYMS
	depends on HAS_KALLSYMS
	depends on BROKEN
	bool "kallsyms"
	help
	  With Kallsyms enabled all symbols are compiled into the U-Boot image.
	  This is useful to print a nice backtrace when an exception occurs.
	  No architecture supports backtraces at the moment, so this option
	  is quite useless at the moment

config RELOCATABLE
	depends on PPC
	bool "generate relocatable U-Boot binary"
	help
	  A non relocatable U-Boot binary will run at it's compiled in
	  link address in RAM. This leads to smaller image sizes but may
	  put U-Boot just in the middle of RAM. With this option enabled
	  instead U-Boot can determine this address at runtime and thus
	  allowing it to relocate to the end of the available RAM. This
	  way you have the whole memory in a single piece.

config PROMPT
	string
	prompt "U-Boot command prompt"
	default "uboot:"

config BAUDRATE
	int
	prompt "Default baudrate"
	default 115200

config CMDLINE_EDITING
	bool
	prompt "Enable command line editing"

config AUTO_COMPLETE
	bool
	prompt "Enable auto completion"

config SIMPLE_READLINE
	bool
	default y
	depends on !CMDLINE_EDITING

config LONGHELP
	bool
	prompt "Enable long help texts"

config CBSIZE
	int
	prompt "Buffer size for input from the Console"
	default 1024

config MAXARGS
	int
	prompt "max. Number of arguments accepted for monitor commands"
	default 16

choice
	prompt "Select your shell"

	config SHELL_HUSH
		bool "hush parser"

	config SHELL_SIMPLE
		bool "Simple parser"

endchoice

config PROMPT_HUSH_PS2
	string
	depends on SHELL_HUSH
	prompt "hush PS2"
	default "> "

config DYNAMIC_CRC_TABLE
	bool
	depends on CRC32
	prompt "Generate the crc32 table dynamically"
	default y
	help
	  Saying yes to this option saves around 800 bytes of binary size.
	  If unsure say yes.

config ERRNO_MESSAGES
	bool
	prompt "print error values as text"
	default y

config TIMESTAMP
	bool
	default y
	select GREGORIAN_CALENDER
	prompt "print timestamp information from images"
	help
	  When CONFIG_TIMESTAMP is selected, the timestamp
	  (date and time) of an image is printed by image
	  commands like bootm or iminfo. This option is
	  automatically enabled when you select CFG_CMD_DATE .

config CONSOLE_ACTIVATE_FIRST
	bool
	default y
	prompt "activate first console on startup"
	help
	  Normally on startup all consoles are disabled, so you won't
	  see anything from U-Boot starting. Enabling this option
	  enables the first console.

config CONSOLE_ACTIVATE_ALL
	bool
	depends on !CONSOLE_ACTIVATE_FIRST
	prompt "activate all consoles on startup"
	help
	  Enabling this options activates all consoles on startup, so
	  you will get output and a prompt on all consoles simultaneously.

config OF_FLAT_TREE
	bool
	prompt "Open Firmware flat device tree support"

config DEFAULT_ENVIRONMENT
	bool
	default y
	prompt "Compile in default environment"
	help
	  Enabling this option will give you a default environment when
	  the environment found in the environment sector is invalid

config DEFAULT_ENVIRONMENT_PATH
	string
	depends on DEFAULT_ENVIRONMENT
	prompt "Default environment path"
	help
	  The path the default environment will be taken from. Relative
	  pathes will be relative to the U-Boot Toplevel dir, but absolute
	  pathes are fine aswell.
endmenu

menu "Debugging                     "

config SKIP_LOWLEVEL_INIT
	bool
	depends on ARM
	prompt "Skip lowlevel init"


endmenu