File: Kconfig

package info (click to toggle)
kas 5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,268 kB
  • sloc: python: 5,745; sh: 1,095; makefile: 210
file content (32 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (3)
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
config KAS_INCLUDE_MAIN
	string
	default "test.yaml"

config KAS_BUILD_SYSTEM
	string
	default "openembedded"

config BOOL_OPT1
	bool "ppt1"

config KAS_INCLUDE_OPT1
	string
	default "opt1.yaml"
	depends on BOOL_OPT1

choice
	prompt "choice"
	default CHOICE1

config CHOICE1
	bool "choice1"

config CHOICE2
	bool "choice2"

endchoice

config KAS_TARGET_CHOICE
	string
	default "target1" if CHOICE1
	default "target2" if CHOICE2