From: Jeremy Kerr Date: Wed, 8 May 2013 05:04:28 +0000 (+0800) Subject: discover: Don't invert option discovery order X-Git-Tag: v1.0.0~655 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=d70b3460fbbcc9acb4a80e1e6fe51d564ae607aa;hp=64c7065659bd939564356d688dcd24c65e02d57f discover: Don't invert option discovery order Keep options in the order that we discovered them in; this makes testing a little easier, as the options appear in the list in the same order as the config file. Signed-off-by: Jeremy Kerr --- diff --git a/discover/device-handler.c b/discover/device-handler.c index 9e4c5bb..0fc6d75 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -171,7 +171,7 @@ void discover_context_add_boot_option(struct discover_context *ctx, struct discover_boot_option *boot_option) { boot_option->source = ctx->parser; - list_add(&ctx->boot_options, &boot_option->list); + list_add_tail(&ctx->boot_options, &boot_option->list); talloc_steal(ctx, boot_option); }