File: Kundef

package info (click to toggle)
kconfiglib 14.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,400 kB
  • sloc: python: 8,498; sh: 34; makefile: 8
file content (23 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
config DEF
	bool

config BOOL
	bool "foo" if DEF || !UNDEF_1
	default UNDEF_2

config INT
	int
	range UNDEF_2 8
	default 10
	range 5 15

config HEX
	hex
	range 0x123 0X456
	default 0x200

menu "menu"
	depends on UNDEF_1
	visible if UNDEF_3

endmenu