Re: [Uboot-stm32] [PATCH] dfu: Make DFU virtual backend SPL friendly

2022-12-08 Thread Marek Vasut
On 12/8/22 14:53, Patrice CHOTARD wrote: On 12/8/22 14:27, Marek Vasut wrote: On 12/8/22 09:19, Patrice CHOTARD wrote: Hi Marek Hello Patrice, I am preparing a STM32 pull request which includes this series https://patchwork.ozlabs.org/project/uboot/patch/20221206023515.113556-1-ma...@den

Re: [Uboot-stm32] [PATCH] dfu: Make DFU virtual backend SPL friendly

2022-12-08 Thread Patrice CHOTARD
On 12/8/22 14:27, Marek Vasut wrote: > On 12/8/22 09:19, Patrice CHOTARD wrote: >> Hi Marek > > Hello Patrice, > >> I am preparing a STM32 pull request which includes this series >> >> https://patchwork.ozlabs.org/project/uboot/patch/20221206023515.113556-1-ma...@denx.de/ >> >> We got a DFU co

Re: [Uboot-stm32] [PATCH] dfu: Make DFU virtual backend SPL friendly

2022-12-08 Thread Marek Vasut
On 12/8/22 09:19, Patrice CHOTARD wrote: Hi Marek Hello Patrice, I am preparing a STM32 pull request which includes this series https://patchwork.ozlabs.org/project/uboot/patch/20221206023515.113556-1-ma...@denx.de/ We got a DFU compilation issue with this series : arm: + stm32m

Re: [Uboot-stm32] [PATCH] dfu: Make DFU virtual backend SPL friendly

2022-12-08 Thread Patrice CHOTARD
Hi Marek I am preparing a STM32 pull request which includes this series https://patchwork.ozlabs.org/project/uboot/patch/20221206023515.113556-1-ma...@denx.de/ We got a DFU compilation issue with this series : arm: + stm32mp15_dhcom_basic

Re: [PATCH] dfu: Make DFU virtual backend SPL friendly

2022-12-04 Thread Marek Vasut
On 11/30/22 11:42, Patrick Delaunay wrote: Define stub for dfu_*_virt function in SPL, because CONFIG_SPL_DFU_VIRT is not defined. This patch avoids compilation issue in dfu_fill_entity() when CONFIG_SPL_DFU is activated because the dfu_fill_entity_virt() function is not available. Fixes: ec44c

[PATCH] dfu: Make DFU virtual backend SPL friendly

2022-11-30 Thread Patrick Delaunay
Define stub for dfu_*_virt function in SPL, because CONFIG_SPL_DFU_VIRT is not defined. This patch avoids compilation issue in dfu_fill_entity() when CONFIG_SPL_DFU is activated because the dfu_fill_entity_virt() function is not available. Fixes: ec44cace4b8d2 ("dfu: add DFU virtual backend") Rep