summaryrefslogtreecommitdiff
path: root/common/dfu.c
diff options
context:
space:
mode:
authorMarek Szyprowski <m.szyprowski@samsung.com>2020-12-22 11:32:23 +0100
committerMarek Vasut <marex@denx.de>2021-01-31 14:08:56 +0100
commit9129f2f16488e95f8a71bb87937397aaf333bc1b (patch)
tree418451b37dd45ec8b6878d7a6f18b8170301e1cc /common/dfu.c
parentc533f94c102127b94abda206dbe41fe026bcde76 (diff)
dfu: add support for the dfu_alt_info reintialization from the flashed script
Reinitialize DFU USB gadget after flashing the 'SCRIPT' entity to ensure that the potential changes to the 'dfu_alt_info' environment variable are applied. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> [lukma - I've moved the bool retry to avoid build (CI) errors]
Diffstat (limited to 'common/dfu.c')
-rw-r--r--common/dfu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/dfu.c b/common/dfu.c
index d23cf67f19..16bd1ba588 100644
--- a/common/dfu.c
+++ b/common/dfu.c
@@ -98,6 +98,9 @@ int run_usb_dnl_gadget(int usbctrl_index, char *usb_dnl_gadget)
}
#endif
+ if (dfu_reinit_needed)
+ goto exit;
+
WATCHDOG_RESET();
usb_gadget_handle_interrupts(usbctrl_index);
}