summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Vadot <[email protected]>2017-01-31 12:17:04 +0100
committerTom Rini <[email protected]>2017-02-08 15:56:31 -0500
commit4db98d3d92827e38d0853f0c1932d3db7d757622 (patch)
tree8f34573a7d7cd8e3fd80e0fc110c2e9db4d5e5e4
parent1bdd942b6da8a9e8686defe431380754cccb9b5a (diff)
kconfig: Add API kconfig file
Add kconfig file to enable API support Signed-off-by: Emmanuel Vadot <[email protected]> Reviewed-by: Tom Rini <[email protected]> Reviewed-by: Simon Glass <[email protected]>
-rw-r--r--Kconfig2
-rw-r--r--api/Kconfig9
2 files changed, 11 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 0dd21dfc17f..81b4226463a 100644
--- a/Kconfig
+++ b/Kconfig
@@ -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 00000000000..16731d3b4b3
--- /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