X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fparser.c;h=beaacccbdb1973e3ccb1ba0b3a1e570f4c87cc61;hp=5b1a7abdab600656bc803721bef66f07bdcc9b88;hb=7d830eb98a012c5724cdd4ed828b039ba5f788b6;hpb=ce5eab024583af5a4725503bad6ed2aee452b1aa diff --git a/discover/parser.c b/discover/parser.c index 5b1a7ab..beaaccc 100644 --- a/discover/parser.c +++ b/discover/parser.c @@ -2,29 +2,40 @@ #include #include "pb-protocol/pb-protocol.h" +#include #include "device-handler.h" -#include "log.h" #include "parser.h" -extern struct parser kboot_parser; +#include "parser-utils.h" -/* array of parsers, ordered by priority */ -static struct parser *parsers[] = { - &kboot_parser, +struct parser __grub2_parser; +struct parser __kboot_parser; +struct parser __native_parser; +struct parser __yaboot_parser; + +static const struct parser *const parsers[] = { +// &__native_parser, + &__kboot_parser, + &__grub2_parser, + &__yaboot_parser, NULL }; void iterate_parsers(struct discover_context *ctx) { int i; + unsigned int count = 0; pb_log("trying parsers for %s\n", ctx->device_path); for (i = 0; parsers[i]; i++) { pb_log("\ttrying parser '%s'\n", parsers[i]->name); - /* just use a dummy device path for now */ - if (parsers[i]->parse(ctx)) - return; + count += parsers[i]->parse(ctx); } - pb_log("\tno boot_options found\n"); + if (!count) + pb_log("\tno boot_options found\n"); +} + +void parser_init(void) +{ }