File: Kconfig

package info (click to toggle)
opensbi 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,480 kB
  • sloc: ansic: 34,934; python: 4,658; asm: 1,113; makefile: 639; sh: 329
file content (25 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (4)
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
# SPDX-License-Identifier: BSD-2-Clause

menuconfig FDT
	bool "Flattened Device Tree (FDT) support"
	select LIBFDT
	default n

if FDT

config FDT_DOMAIN
	bool "FDT domain support"
	default n

config FDT_PMU
	bool "FDT performance monitoring unit (PMU) support"
	default n

config FDT_FIXUPS_PRESERVE_PMU_NODE
	bool "Preserve PMU node in device-tree"
	depends on FDT_PMU
	default n
	help
	  Preserve PMU node properties for debugging purposes.

endif