summaryrefslogtreecommitdiffstats
path: root/scripts/Kconfig
blob: 20530b9ae3840096616f937fe986300eed8a134e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
menu "Host Tools"

config COMPILE_HOST_TOOLS
	bool "Allow to enable unused host tools"
	help
	  Usually the needed host tools are selected (or selectable) depending
	  on some config options. If you say yes here, the host tools that are
	  not needed can be selected, too.

	  This is usefull for compile coverage testing and for packaging the
	  host tools.

source "scripts/imx/Kconfig"

config MVEBU_HOSTTOOLS
	bool "mvebu hosttools" if COMPILE_HOST_TOOLS
	depends on ARCH_MVEBU || COMPILE_HOST_TOOLS
	default y if ARCH_MVEBU
	help
	  This enables building the tools kwbimage to create an image suitable
	  for Marvell mvebu machines and kwboot to boot via UART.

config MXS_HOSTTOOLS
	bool "mxs hosttools" if COMPILE_HOST_TOOLS
	depends on ARCH_MXS || COMPILE_HOST_TOOLS
	default y if ARCH_MXS
	help
	  This builds the tools mxsimage and mxsboot which are needed to
	  create bootable image files for mxs. You need openssl development
	  files to compile this tool.

config OMAP3_USB_LOADER
	bool "omap3 USB loader"
	depends on ARCH_OMAP3 || COMPILE_HOST_TOOLS
	help
	  Say Y here to build the omap3 usb loader tool.

	  You need libusb-1.0 to compile this tool.

config OMAP4_HOSTTOOL_USBBOOT
	bool "omap4 usbboot"
	depends on (ARCH_OMAP4 && !MMU) || COMPILE_HOST_TOOLS
	default y if OMAP4_USBBOOT
	help
	  Say Y here to build the omap4 usb loader tool.
	  Note that you need to enable OMAP4_USBBOOT to create an image
	  suitable to boot using this tool.

	  You need libusb-1.0 to compile this tool.

endmenu