Message ID | 1524651408-31933-1-git-send-email-yamada.masahiro@socionext.com |
---|---|
State | Accepted |
Commit | c4f668320a2a8fe65de259917fc9687437f10cd9 |
Headers | show |
Series | distro: select CMD_ENV_EXISTS | expand |
On 04/25/2018 12:16 PM, Masahiro Yamada wrote: > 'env exists' is used for scripting in include/config_distro_bootcmd.h > This command is available only when CONFIG_CMD_ENV_EXISTS is enabled. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Alexander Graf <agraf@suse.de> Alex
On Wed, Apr 25, 2018 at 07:16:48PM +0900, Masahiro Yamada wrote: > 'env exists' is used for scripting in include/config_distro_bootcmd.h > This command is available only when CONFIG_CMD_ENV_EXISTS is enabled. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > Reviewed-by: Alexander Graf <agraf@suse.de> Applied to u-boot/master, thanks! -- Tom
diff --git a/Kconfig b/Kconfig index 3bf95c1..0c5d6f4 100644 --- a/Kconfig +++ b/Kconfig @@ -74,6 +74,7 @@ config DISTRO_DEFAULTS select CMD_DHCP if CMD_NET select CMD_PING if CMD_NET select CMD_PXE if NET + select CMD_ENV_EXISTS select CMD_EXT2 select CMD_EXT4 select CMD_FAT
'env exists' is used for scripting in include/config_distro_bootcmd.h This command is available only when CONFIG_CMD_ENV_EXISTS is enabled. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- Kconfig | 1 + 1 file changed, 1 insertion(+)