]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - samples/Kconfig
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
[mirror_ubuntu-artful-kernel.git] / samples / Kconfig
1 # samples/Kconfig
2
3 menuconfig SAMPLES
4 bool "Sample kernel code"
5 help
6 You can build and test sample kernel code here.
7
8 if SAMPLES
9
10 config SAMPLE_TRACEPOINTS
11 tristate "Build tracepoints examples -- loadable modules only"
12 depends on TRACEPOINTS && m
13 help
14 This build tracepoints example modules.
15
16 config SAMPLE_TRACE_EVENTS
17 tristate "Build trace_events examples -- loadable modules only"
18 depends on EVENT_TRACING && m
19 help
20 This build trace event example modules.
21
22 config SAMPLE_KOBJECT
23 tristate "Build kobject examples -- loadable modules only"
24 depends on m
25 help
26 This config option will allow you to build a number of
27 different kobject sample modules showing how to use kobjects,
28 ksets, and ktypes properly.
29
30 If in doubt, say "N" here.
31
32 config SAMPLE_KPROBES
33 tristate "Build kprobes examples -- loadable modules only"
34 depends on KPROBES && m
35 help
36 This build several kprobes example modules.
37
38 config SAMPLE_KRETPROBES
39 tristate "Build kretprobes example -- loadable modules only"
40 default m
41 depends on SAMPLE_KPROBES && KRETPROBES
42
43 config SAMPLE_HW_BREAKPOINT
44 tristate "Build kernel hardware breakpoint examples -- loadable module only"
45 depends on HAVE_HW_BREAKPOINT && m
46 help
47 This builds kernel hardware breakpoint example modules.
48
49 endif # SAMPLES
50