From da08b5a04832053b6559c12c5849360b620cc403 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Thu, 7 Jun 2018 12:09:34 +0100 Subject: [PATCH] colorhug: Remove the bootloader flag when re-booting in runtime mode This needs to be fixed properly, and will be addressed in a future PR. --- plugins/colorhug/fu-colorhug-device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/colorhug/fu-colorhug-device.c b/plugins/colorhug/fu-colorhug-device.c index 78fa7de7a..f94a42509 100644 --- a/plugins/colorhug/fu-colorhug-device.c +++ b/plugins/colorhug/fu-colorhug-device.c @@ -267,6 +267,7 @@ fu_colorhug_device_probe (FuUsbDevice *device, GError **error) "not supported with this device"); return FALSE; } + fu_device_remove_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_IS_BOOTLOADER); quirks = g_strsplit (quirk_str, ",", -1); for (guint i = 0; quirks[i] != NULL; i++) { if (g_strcmp0 (quirks[i], "bootloader") == 0) {