diff options
author | Tom Rini <trini@konsulko.com> | 2024-09-30 10:38:05 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-30 10:38:05 -0600 |
commit | bfb87a336be34ee1c1f315fde8923b2cba8d3a3b (patch) | |
tree | 26de651b440ea754a16f5c371413bbc9542dec8b | |
parent | 17da9795c115dcfac49338ea044fa9413f5d0763 (diff) | |
parent | 2f9c472dd7a91bc2d6e7840a550edcd257ff8b57 (diff) |
Merge tag 'u-boot-dfu-20240930' of https://source.denx.de/u-boot/custodians/u-boot-dfu
u-boot-dfu-20240930
- Fix Kconfig dependencies for DFU_OVER_USB
-rw-r--r-- | drivers/dfu/Kconfig | 2 | ||||
-rw-r--r-- | drivers/usb/gadget/Kconfig | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 971204758aa..aadd7e8cf7f 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -7,7 +7,7 @@ config DFU config DFU_OVER_USB bool select HASH - depends on USB_GADGET + depends on USB_GADGET_DOWNLOAD config DFU_OVER_TFTP bool diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 4621a6fd5e6..2634154f94a 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig @@ -323,6 +323,7 @@ config SPL_DFU bool "Support DFU (Device Firmware Upgrade) in SPL" select SPL_HASH select SPL_DFU_NO_RESET + depends on DFU_OVER_USB depends on SPL_RAM_SUPPORT help This feature enables the DFU (Device Firmware Upgrade) in SPL with |