-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
36 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
menu "Command line interface" | ||
depends on !SPL_BUILD | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
menu "Library routines" | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |