diff options
| author | Jerome Forissier <[email protected]> | 2024-09-11 11:58:28 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-09-24 13:41:21 -0600 |
| commit | 1582e438ba099fb6f5831e69a543b07664e0c8d5 (patch) | |
| tree | 974ab44a0499a023d3577a9c0ee9cb0377648221 | |
| parent | bd6b3baa5ee8218b468876730dd201627918f269 (diff) | |
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 <[email protected]>
Reviewed-by: Peter Robinson <[email protected]>
| -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 |
