From 961792677ad968ccbc3d93b06f10d5977f4c322f Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Fri, 18 Dec 2020 14:42:22 +0300 Subject: [PATCH] device: notify before booting the board Transfering the image to cdba server takes time (especially when working with over the network). Notify users before actually booting the board to ease detecting early boot issues. Signed-off-by: Dmitry Baryshkov --- device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/device.c b/device.c index e323c6f..35805c5 100644 --- a/device.c +++ b/device.c @@ -256,6 +256,7 @@ void device_fastboot_flash_reboot(struct device *device) void device_boot(struct device *device, const void *data, size_t len) { + warnx("booting the board..."); if (device->set_active) fastboot_set_active(device->fastboot, "a"); fastboot_download(device->fastboot, data, len);