diff options
author | Jerome Forissier <jerome.forissier@linaro.org> | 2024-09-11 11:58:28 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-24 13:41:21 -0600 |
commit | 1582e438ba099fb6f5831e69a543b07664e0c8d5 (patch) | |
tree | 974ab44a0499a023d3577a9c0ee9cb0377648221 /cmd/Kconfig | |
parent | bd6b3baa5ee8218b468876730dd201627918f269 (diff) | |
download | u-boot-1582e438ba099fb6f5831e69a543b07664e0c8d5.tar.gz |
cmd: pxe: CMD_PXE implies CMD_TFTPBOOT
cmd/pxe.c (CMD_PXE) calls do_get_tftp() (CMD_TFTPBOOT) therefore add
an "imply" to cmd/Kconfig.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Peter Robinson <pbrobinson@gmail.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 43f78a5aeb1..83c82818bf4 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2099,6 +2099,7 @@ config CMD_ETHSW config CMD_PXE bool "pxe" select PXE_UTILS + imply CMD_TFTPBOOT help Boot image via network using PXE protocol |