Re: [PATCH 5/5] cmd/dfu: Enable 'dfu list' command without DFU_OVER_USB

2022-01-30 Thread Masami Hiramatsu
Hi Tom, Thanks for testing, I confirmed the error. CC cmd/dfu.o cmd/dfu.c: In function ‘do_dfu’: cmd/dfu.c:53:30: error: ‘interface’ undeclared (first use in this function); did you mean ‘usb_interface’? 53 | ret = dfu_init_env_entities(interface, devstring); |

Re: [PATCH 5/5] cmd/dfu: Enable 'dfu list' command without DFU_OVER_USB

2022-01-28 Thread Tom Rini
On Mon, Dec 06, 2021 at 02:45:11PM +0900, Masami Hiramatsu wrote: > Since dfu is not only used for USB, and some platform only > supports DFU_OVER_TFTP or EFI capsule update, dfu_alt_info > is defined on such platforms too. > > For such platform, 'dfu list' command is useful to check > how the cu

[PATCH 5/5] cmd/dfu: Enable 'dfu list' command without DFU_OVER_USB

2021-12-05 Thread Masami Hiramatsu
Since dfu is not only used for USB, and some platform only supports DFU_OVER_TFTP or EFI capsule update, dfu_alt_info is defined on such platforms too. For such platform, 'dfu list' command is useful to check how the current dfu_alt_info setting is parsed. Signed-off-by: Masami Hiramatsu --- cm