]> git.ozlabs.org Git - petitboot/blobdiff - discover/device-handler.c
discover/device-handler: Treat empty boot order as 'boot any'
[petitboot] / discover / device-handler.c
index 7a570f9e612da52ff7d098ee2e7ec8ac6eb3bb23..a6eb8843d514e0a99f9a53bb79ea951e8ec6f36a 100644 (file)
@@ -832,6 +832,9 @@ static enum default_priority default_option_priority(
                int boot_match = autoboot_option_priority(config, opt);
                if (boot_match > 0)
                        return boot_match;
+       } else {
+               /* If there is no specific boot order, boot any device */
+               return DEFAULT_PRIORITY_LOCAL_FIRST;
        }
 
        /* If the option didn't match any entry in the array, it is disabled */