diff options
author | Josua Mayer <josua.mayer97@gmail.com> | 2017-04-24 10:10:45 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-27 16:49:07 -0400 |
commit | efbe99ceb629fae4ecb7c0b2cd7d28164f585686 (patch) | |
tree | f89a92feb97964e8369abb61f1dfe220a73d8638 | |
parent | 46f9ef18461609064a1ffbc3f61dc027ec76b3ff (diff) | |
download | u-boot-efbe99ceb629fae4ecb7c0b2cd7d28164f585686.tar.gz |
add Kconfig for fsuuid command
CONFIG_CMD_FS_UUID was neither whitelisted, nor was it declared in
Kconfig.
Now it can be enabled in .config and defconfig as expected.
Signed-off-by: Josua Mayer <josua.mayer97@gmail.com>
-rw-r--r-- | cmd/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 13dc46a174..50888236db 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -831,6 +831,11 @@ config CMD_FS_GENERIC Enables filesystem commands (e.g. load, ls) that work for multiple fs types. +config CMD_FS_UUID + bool "fsuuid command" + help + Enables fsuuid command for filesystem UUID. + config CMD_MTDPARTS depends on ARCH_SUNXI bool "MTD partition support" |