summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-23 13:52:53 -0600
committerJerome Forissier <[email protected]>2026-03-31 16:54:49 +0200
commit66da793b69cbc3cced046c93e9882b249a30a5c6 (patch)
tree96d84176a49f95522fe534f405676aa9ba0c3a70 /cmd
parent9d0b1838044616d4bbe7b5c7815d43d70888719f (diff)
net: cmd: Correct dependencies for CMD_PXE
The CMD_PXE functionality can only build with CMD_TFTPBOOT enabled (or we get undefined references to do_tftpb), so express this dependency in Kconfig. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 08af0003a9f..3fd426d3d44 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -2314,7 +2314,7 @@ config WGET_BUILTIN_CACERT_PATH
config CMD_PXE
bool "pxe"
select PXE_UTILS
- imply CMD_TFTPBOOT
+ select CMD_TFTPBOOT
help
Boot image via network using PXE protocol