summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
blob: be6b31d5c31786d280295fa3c16a250adffc050a (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

config GREGORIAN_CALENDER
	bool

menu "General Settings              "

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

config HUSH_PARSER
	bool
	prompt "Use hush parser"

config SIMPLE_PARSER
	bool
	default y
	depends on !HUSH_PARSER

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

config ZERO_BOOTDELAY_CHECK
	bool
	prompt "Enable stop boot process with bootdelay = 0"
	default y

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"

endmenu

menu "Debugging                     "

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


endmenu