From: Dinh Nguyen <dinguyen@kernel.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCHv2] cmd: Kconfig: Add a Kconfig options for a few CMD
Date: Thu, 21 Apr 2016 09:05:23 -0500 [thread overview]
Message-ID: <1461247523-22729-1-git-send-email-dinguyen@kernel.org> (raw)
Add the following CMD options to Kconfig:
CMD_BOOTZ
CMD_ASKENV
CMD_GREPENV
CMD_USB_MASS_STORAGE
CMD_FAT
CMD_MII
CMD_CACHE
CMD_DFU
CMD_EXT2
CMD_EXT4
CMD_EXT4_WRITE
CMD_FS_GENERIC
CMD_MMC
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
---
v2: remove an extra CMD_DFU
---
cmd/Kconfig | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index fe8b4f0..ec7c054 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -160,6 +160,11 @@ config CMD_BOOTM
help
Boot an application image from the memory.
+config CMD_BOOTZ
+ bool "bootz"
+ help
+ Boot the Linux zImage
+
config CMD_BOOTEFI
bool "bootefi"
depends on EFI_LOADER
@@ -210,6 +215,11 @@ endmenu
menu "Environment commands"
+config CMD_ASKENV
+ bool "ask for env variable"
+ help
+ Ask for environment variable
+
config CMD_EXPORTENV
bool "env export"
default y
@@ -228,6 +238,11 @@ config CMD_EDITENV
help
Edit environment variable.
+config CMD_GREPENV
+ bool "search env"
+ help
+ Allow for searching environment variables
+
config CMD_SAVEENV
bool "saveenv"
default y
@@ -341,6 +356,11 @@ config CMD_ARMFLASH
help
ARM Ltd reference designs flash partition access
+config CMD_MMC
+ bool "mmc"
+ help
+ MMC memory mapped support.
+
config CMD_NAND
bool "nand"
help
@@ -366,6 +386,19 @@ config CMD_USB
help
USB support.
+config CMD_DFU
+ depends on CMD_USB
+ bool "dfu"
+ help
+ Enables the command "dfu" which is used to have U-Boot create a DFU
+ class device via USB.
+
+config CMD_USB_MASS_STORAGE
+ depends on CMD_USB
+ bool "UMS usb mass storage"
+ help
+ USB mass storage support
+
config CMD_FPGA
bool "fpga"
default y
@@ -454,6 +487,11 @@ config CMD_NFS
help
Boot image via network using NFS protocol.
+config CMD_MII
+ bool "mii"
+ help
+ Enable MII utility commands.
+
config CMD_PING
bool "ping"
help
@@ -508,6 +546,11 @@ config CMD_BLOCK_CACHE
during development, but also allows the cache to be disabled when
it might hurt performance (e.g. when using the ums command).
+config CMD_CACHE
+ bool "icache or dcache"
+ help
+ Enable the "icache" and "dcache" commands
+
config CMD_TIME
bool "time"
help
@@ -612,4 +655,33 @@ config CMD_TPM_TEST
endmenu
+menu "Filesystem commands"
+config CMD_EXT2
+ bool "ext2 command support"
+ help
+ Enables EXT2 FS command
+
+config CMD_EXT4
+ bool "ext4 command support"
+ help
+ Enables EXT4 FS command
+
+config CMD_EXT4_WRITE
+ depends on CMD_EXT4
+ bool "ext4 write command support"
+ help
+ Enables EXT4 FS write command
+
+config CMD_FAT
+ bool "FAT command support"
+ help
+ Support for the FAT fs
+
+config CMD_FS_GENERIC
+ bool "filesystem commands"
+ help
+ Enables filesystem commands (e.g. load, ls) that work for multiple
+ fs types.
+endmenu
+
endmenu
--
1.9.1.315.g3f09db0
next reply other threads:[~2016-04-21 14:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-21 14:05 Dinh Nguyen [this message]
2016-04-21 14:13 ` [U-Boot] [PATCHv2] cmd: Kconfig: Add a Kconfig options for a few CMD Simon Glass
2016-04-21 14:18 ` Dinh Nguyen
2016-04-21 15:02 ` Tom Rini
2016-04-22 21:02 ` Tom Rini
2016-04-25 19:12 ` [U-Boot] [PATCH] configs: Re-sync with cmd/Kconfig Tom Rini
2016-04-26 0:16 ` Tom Rini
2016-04-26 0:17 ` [U-Boot] [U-Boot, PATCHv2] cmd: Kconfig: Add a Kconfig options for a few CMD Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1461247523-22729-1-git-send-email-dinguyen@kernel.org \
--to=dinguyen@kernel.org \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.