Commit 4db98d3d92827e38d0853f0c1932d3db7d757622

Authored by Emmanuel Vadot
Committed by Tom Rini
1 parent 1bdd942b6d

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>

Showing 2 changed files with 11 additions and 0 deletions Side-by-side Diff

... ... @@ -308,6 +308,8 @@
308 308  
309 309 endmenu # Boot images
310 310  
  311 +source "api/Kconfig"
  312 +
311 313 source "common/Kconfig"
312 314  
313 315 source "cmd/Kconfig"
  1 +menu "API"
  2 +
  3 +config API
  4 + bool "Enable U-Boot API"
  5 + default n
  6 + help
  7 + This option enables the U-Boot API. See api/README for more information.
  8 +
  9 +endmenu