summaryrefslogtreecommitdiffstats
path: root/rules/kernel.in
blob: be5753ed32f8cf7181e18a4f9255af6a30d2ac5a (plain)
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
35
36
37
## SECTION=core

menuconfig KERNEL
	bool "kernel tools                  "
	select LIBELF		if KERNEL_TOOL_PERF
	select LIBELF_LIBDW	if KERNEL_TOOL_PERF
	select SLANG		if KERNEL_TOOL_PERF
	select BINUTILS		if KERNEL_TOOL_PERF

if KERNEL

config KERNEL_XPKG
	bool
	help
	  Select this symbol if kernel tools or other non kernel
	  modules are installed.

config KERNEL_VMLINUX
	select KERNEL_XPKG
	bool
	help
	  install kernel image to /boot/vmlinux

config KERNEL_TOOL_PERF
	select KERNEL_XPKG
	bool "perf"
	help
	  perf helps to analyze and measure performance using hardware and
	  software counters.

config KERNEL_TOOL_IIO
	select KERNEL_XPKG
	bool "iio (>=v4.5)"
	help
	  IIO tools help to access and analyze the iio devices.

endif