1config API
2	bool "Enable U-Boot API"
3	depends on CC_IS_GCC
4	help
5	  This option enables the U-Boot API. See api/README for more information.
6
7menu "API"
8	depends on API
9
10config SYS_MMC_MAX_DEVICE
11	int  "Maximum number of MMC devices exposed via the API"
12	default 1
13
14config EXAMPLES
15	bool "Compile API examples"
16	depends on !SANDBOX
17	default y if ARCH_QEMU
18	help
19	  U-Boot provides an API for standalone applications. Examples are
20	  provided in directory examples/.
21
22endmenu
23