diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-05-26 18:34:15 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-02 17:27:04 -0400 |
commit | 8e8059ccc55a3725046e628c87450dbc41e1a504 (patch) | |
tree | ae5b58a90c63b9a802e13e8759bea3d57ed538e6 /cmd/Kconfig | |
parent | 1e374089bdfb4fd41a34204b53474180e0be0125 (diff) | |
download | u-boot-8e8059ccc55a3725046e628c87450dbc41e1a504.tar.gz u-boot-8e8059ccc55a3725046e628c87450dbc41e1a504.tar.bz2 u-boot-8e8059ccc55a3725046e628c87450dbc41e1a504.zip |
cmd: fitupd: move config check to Kconfig
Configuration checks should not be in the C files but in the Kconfig files.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 153864c587..192b3b262f 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -491,6 +491,7 @@ config CMD_SPL_WRITE_SIZE config CMD_FITUPD bool "fitImage update command" + depends on UPDATE_TFTP help Implements the 'fitupd' command, which allows to automatically store software updates present on a TFTP server in NOR Flash |