Skip to content
Snippets Groups Projects
Commit ed36323f authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

kconfig: add blank Kconfig files


This would be useful to start moving various config options.

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
Tested-by: default avatarSimon Glass <sjg@chromium.org>
parent a03bdaa1
No related branches found
No related tags found
No related merge requests found
Showing with 66 additions and 1 deletion
...@@ -91,7 +91,7 @@ config SYS_EXTRA_OPTIONS ...@@ -91,7 +91,7 @@ config SYS_EXTRA_OPTIONS
depends on !SPL_BUILD depends on !SPL_BUILD
help help
The old configuration infrastructure (= mkconfig + boards.cfg) The old configuration infrastructure (= mkconfig + boards.cfg)
provided the extra options field. It you have something like provided the extra options field. If you have something like
"HAS_BAR,BAZ=64", the optional options "HAS_BAR,BAZ=64", the optional options
#define CONFIG_HAS #define CONFIG_HAS
#define CONFIG_BAZ 64 #define CONFIG_BAZ 64
...@@ -103,3 +103,13 @@ config SYS_EXTRA_OPTIONS ...@@ -103,3 +103,13 @@ config SYS_EXTRA_OPTIONS
endmenu # Boot images endmenu # Boot images
source "arch/Kconfig" source "arch/Kconfig"
source "common/Kconfig"
source "net/Kconfig"
source "drivers/Kconfig"
source "fs/Kconfig"
source "lib/Kconfig"
menu "Command line interface"
depends on !SPL_BUILD
endmenu
menu "Device Drivers"
source "drivers/core/Kconfig"
source "drivers/pci/Kconfig"
source "drivers/pcmcia/Kconfig"
source "drivers/mtd/Kconfig"
source "drivers/block/Kconfig"
source "drivers/misc/Kconfig"
source "drivers/net/Kconfig"
source "drivers/input/Kconfig"
source "drivers/serial/Kconfig"
source "drivers/tpm/Kconfig"
source "drivers/i2c/Kconfig"
source "drivers/spi/Kconfig"
source "drivers/gpio/Kconfig"
source "drivers/power/Kconfig"
source "drivers/hwmon/Kconfig"
source "drivers/watchdog/Kconfig"
source "drivers/video/Kconfig"
source "drivers/sound/Kconfig"
source "drivers/usb/Kconfig"
source "drivers/dfu/Kconfig"
source "drivers/mmc/Kconfig"
source "drivers/rtc/Kconfig"
source "drivers/dma/Kconfig"
source "drivers/crypto/Kconfig"
endmenu
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment