From: Samuel Mendoza-Jonas Date: Tue, 24 Jan 2017 03:52:20 +0000 (+1100) Subject: discover/device-handler: Process queue after device added X-Git-Tag: v1.4.1~2 X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=6fab22db693aaf495b8be0699e6d177ba69d79ed;hp=6fab22db693aaf495b8be0699e6d177ba69d79ed;p=petitboot discover/device-handler: Process queue after device added In device_handler_discover() we process the unresolved boot options queue first. However the discover_device in question has not yet been added to handler->devices so when a parser tries to search for a matching device it will fail. The discover_device will be added to the handler if it has not already in device_handler_discover_context_commit() so move the call to process_boot_option_queue() after it. Signed-off-by: Samuel Mendoza-Jonas ---