File: Keval

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 (34 lines) | stat: -rw-r--r-- 410 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
24
25
26
27
28
29
30
31
32
33
34
# Enabled/disabled in the test
config MODULES
    bool "modules"
    option modules

config N
    def_tristate n

config M
    def_tristate m

menuconfig Y
    def_tristate y
    prompt "foo"

config Y_STRING
    string
    default "y"

config FOO_BAR_STRING
    string
    default "foo bar"

config INT_37
    int
    default 37

config HEX_0X37
    hex
    default 0x37

config HEX_37
    hex
    default 37