diff options
| author | Tom Rini <[email protected]> | 2023-10-26 14:31:12 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-07 14:48:19 -0500 |
| commit | 9f8b1508ca1f32fb9d383fa2db763146d6289e91 (patch) | |
| tree | fc731476acd9423deb672ca7ccc31ede52163a89 /drivers | |
| parent | a8a53cfa8de0a75487fae2fad7643ae9e90c0195 (diff) | |
dfu: Make DFU_TFTP depend on NETDEVICES
In order to do a DFU update over TFTP we need to have some network
device available, so make this depend on NETDEVICES
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/dfu/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 4e80e85d10d..8771678ca5a 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -19,6 +19,7 @@ config DFU_WRITE_ALT config DFU_TFTP bool "DFU via TFTP" + depends on NETDEVICES select UPDATE_COMMON select DFU_OVER_TFTP help |
