diff options
| author | Marek Vasut <[email protected]> | 2025-10-31 05:16:09 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-17 10:45:00 -0600 |
| commit | da9e7637df05c62d59fcfdb2c72bfd92bd7da92b (patch) | |
| tree | 435ec19025495d071be25c33b3542b7b3a980055 | |
| parent | f65ca70193c1e7426303075c046277864a00896b (diff) | |
ARM: stm32: Add missing build of ST DFU virt code on DH STM32MP1 DHSOM
Commit 6d91f0a3a14d ("board: st: common: cleanup dfu support") split
the vendor-specific DFU implementation into two files, but failed to
update other non-ST boards. This did not lead to noticeable breakage
with plain simple dfu-util, but it makes the ST proprietary programmer
CLI tool end in an infinite loop. Update the Makefile accordingly to
allow even that kind of tooling to work.
Fixes: 6d91f0a3a14d ("board: st: common: cleanup dfu support")
Signed-off-by: Marek Vasut <[email protected]>
Reviewed-by: Patrice Chotard <[email protected]>
| -rw-r--r-- | board/dhelectronics/dh_stm32mp1/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/dhelectronics/dh_stm32mp1/Makefile b/board/dhelectronics/dh_stm32mp1/Makefile index ffd221ac224..2f4a301d1a0 100644 --- a/board/dhelectronics/dh_stm32mp1/Makefile +++ b/board/dhelectronics/dh_stm32mp1/Makefile @@ -7,3 +7,4 @@ obj-$(CONFIG_PMIC_STPMIC1) += ../../st/common/stpmic1.o obj-y += board.o obj-$(CONFIG_SET_DFU_ALT_INFO) += ../../st/common/stm32mp_dfu.o +obj-$(CONFIG_$(PHASE_)DFU_VIRT) += ../../st/common/stm32mp_dfu_virt.o |
