summaryrefslogtreecommitdiff
path: root/api/Kconfig
blob: 8cfd98ad6a62cb6118434510229e14f6555ce2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
config API
	bool "Enable U-Boot API"
	depends on CC_IS_GCC
	help
	  This option enables the U-Boot API. See api/README for more information.

menu "API"
	depends on API

config SYS_MMC_MAX_DEVICE
	int  "Maximum number of MMC devices exposed via the API"
	default 1

config EXAMPLES
	bool "Compile API examples"
	depends on !SANDBOX
	default y if ARCH_QEMU
	help
	  U-Boot provides an API for standalone applications. Examples are
	  provided in directory examples/.

endmenu