File: Kdirdep

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 (30 lines) | stat: -rw-r--r-- 361 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
config NO_DEP_SYM
    bool

config DEP_SYM
    bool
    depends on A

config DEP_SYM
    depends on B && C

config DEP_SYM
    depends on !D


choice NO_DEP_CHOICE
    bool "no dep. choice"
endchoice

choice DEP_CHOICE
    bool "dep. choice"
    depends on A
endchoice

choice DEP_CHOICE
    depends on B
endchoice

choice DEP_CHOICE
    depends on C
endchoice