Skip to content

Commit

Permalink
kconfig: add blank Kconfig files
Browse files Browse the repository at this point in the history
This would be useful to start moving various config options.

Signed-off-by: Masahiro Yamada <[email protected]>
Acked-by: Simon Glass <[email protected]>
Tested-by: Simon Glass <[email protected]>
  • Loading branch information
masahir0y authored and trini committed Sep 24, 2014
1 parent a03bdaa commit ed36323
Show file tree
Hide file tree
Showing 36 changed files with 98 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ config SYS_EXTRA_OPTIONS
depends on !SPL_BUILD
help
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
#define CONFIG_HAS
#define CONFIG_BAZ 64
Expand All @@ -103,3 +103,13 @@ config SYS_EXTRA_OPTIONS
endmenu # Boot images

source "arch/Kconfig"

source "common/Kconfig"

source "net/Kconfig"

source "drivers/Kconfig"

source "fs/Kconfig"

source "lib/Kconfig"
4 changes: 4 additions & 0 deletions common/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
menu "Command line interface"
depends on !SPL_BUILD

endmenu
51 changes: 51 additions & 0 deletions drivers/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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
Empty file added drivers/block/Kconfig
Empty file.
Empty file added drivers/core/Kconfig
Empty file.
Empty file added drivers/crypto/Kconfig
Empty file.
Empty file added drivers/dfu/Kconfig
Empty file.
Empty file added drivers/dma/Kconfig
Empty file.
Empty file added drivers/gpio/Kconfig
Empty file.
Empty file added drivers/hwmon/Kconfig
Empty file.
Empty file added drivers/i2c/Kconfig
Empty file.
Empty file added drivers/input/Kconfig
Empty file.
Empty file added drivers/misc/Kconfig
Empty file.
Empty file added drivers/mmc/Kconfig
Empty file.
Empty file added drivers/mtd/Kconfig
Empty file.
Empty file added drivers/net/Kconfig
Empty file.
Empty file added drivers/pci/Kconfig
Empty file.
Empty file added drivers/pcmcia/Kconfig
Empty file.
Empty file added drivers/power/Kconfig
Empty file.
Empty file added drivers/rtc/Kconfig
Empty file.
Empty file added drivers/serial/Kconfig
Empty file.
Empty file added drivers/sound/Kconfig
Empty file.
Empty file added drivers/spi/Kconfig
Empty file.
Empty file added drivers/tpm/Kconfig
Empty file.
Empty file added drivers/usb/Kconfig
Empty file.
Empty file added drivers/video/Kconfig
Empty file.
Empty file added drivers/watchdog/Kconfig
Empty file.
19 changes: 19 additions & 0 deletions fs/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#
# File system configuration
#

menu "File systems"

source "fs/ext4/Kconfig"

source "fs/reiserfs/Kconfig"

source "fs/fat/Kconfig"

source "fs/jffs2/Kconfig"

source "fs/ubifs/Kconfig"

source "fs/cramfs/Kconfig"

endmenu
Empty file added fs/cramfs/Kconfig
Empty file.
Empty file added fs/ext4/Kconfig
Empty file.
Empty file added fs/fat/Kconfig
Empty file.
Empty file added fs/jffs2/Kconfig
Empty file.
Empty file added fs/reiserfs/Kconfig
Empty file.
Empty file added fs/ubifs/Kconfig
Empty file.
3 changes: 3 additions & 0 deletions lib/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
menu "Library routines"

endmenu
10 changes: 10 additions & 0 deletions net/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# Network configuration
#

menuconfig NET
bool "Networking support"

if NET

endif # if NET

0 comments on commit ed36323

Please sign in to comment.