forked from lipro-cpm4l/kcsystems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
45 lines (36 loc) · 767 Bytes
/
Kconfig
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
#
# For a description of the syntax of this configuration file, see:
# https://gitlab.com/ymorin/kconfig-frontends/-/blob/master/docs/kconfig-language.txt
#
mainmenu "KC Systems Configuration"
config SYSV
string
menu "Machine Type "
source "mach/Kconfig"
endmenu
if MACH_SUPPORTS_OSYS
menu "Operating System "
source "osys/Kconfig"
endmenu
endif # MACH_SUPPORTS_OSYS
menu "Image Composition"
source "images/Kconfig"
endmenu
config EXPERTMODE
bool
default n
prompt "Enable expert mode"
config GENERATE_LISTINGS
bool
default n
prompt "Generate listing files"
config GENERATE_SYMFILES
bool
default n
prompt "Generate symbol files"
# Local variables:
# coding: utf-8
# mode: text
# mode: kconfig
# End:
# vim: fileencoding=utf-8 filetype=kconfig :