summaryrefslogtreecommitdiffstats
path: root/platforms/dtc.in
blob: c98a16ed5555a6e03b4e518bd9b8a0e5fd5b0ee9 (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
config HOST_DTC
	bool

menuconfig DTC
	bool
	select HOST_DTC
	select KERNEL
	prompt "Build device tree             "
	help
	  Select this to build a device tree for your board.
	  You will find the device tree binary blob under
	  images/oftree in your workspace.

config DTC_OFTREE_DTS
	string "source dts file"
	depends on DTC
	default "${KERNEL_DIR}/arch/powerpc/boot/dts/pcm030.dts"
	help
	  Select the dts file to use for the device tree binary
	  blob generation. Default is to use the one shipped with
	  the kernel.

config DTC_EXTRA_ARGS
	string "extra options passed to dtc"
	depends on DTC
	default "-V 0x10"