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 <jk@ozlabs.org>
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);
}