diff options
author | Emmanuel Vadot <manu@bidouilliste.com> | 2017-01-31 12:17:04 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-02-08 15:56:31 -0500 |
commit | 4db98d3d92827e38d0853f0c1932d3db7d757622 (patch) | |
tree | 8f34573a7d7cd8e3fd80e0fc110c2e9db4d5e5e4 | |
parent | 1bdd942b6da8a9e8686defe431380754cccb9b5a (diff) | |
download | u-boot-4db98d3d92827e38d0853f0c1932d3db7d757622.zip u-boot-4db98d3d92827e38d0853f0c1932d3db7d757622.tar.gz u-boot-4db98d3d92827e38d0853f0c1932d3db7d757622.tar.bz2 |
kconfig: Add API kconfig file
Add kconfig file to enable API support
Signed-off-by: Emmanuel Vadot <manu@bidouilliste.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | Kconfig | 2 | ||||
-rw-r--r-- | api/Kconfig | 9 |
2 files changed, 11 insertions, 0 deletions
@@ -308,6 +308,8 @@ config ARCH_FIXUP_FDT_MEMORY endmenu # Boot images +source "api/Kconfig" + source "common/Kconfig" source "cmd/Kconfig" diff --git a/api/Kconfig b/api/Kconfig new file mode 100644 index 0000000..16731d3 --- /dev/null +++ b/api/Kconfig @@ -0,0 +1,9 @@ +menu "API" + +config API + bool "Enable U-Boot API" + default n + help + This option enables the U-Boot API. See api/README for more information. + +endmenu |