X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fparser.c;h=d34600d18f1526856945689f4fbb0723cbdefc28;hp=a304f0c989e32f4e124d1f62647547b067d952b5;hb=b86a7a0533c4d723ea940ac2071f845f165f832c;hpb=e28232f4b8941ccd151abaaae3f18c32400436f3;ds=sidebyside diff --git a/discover/parser.c b/discover/parser.c index a304f0c..d34600d 100644 --- a/discover/parser.c +++ b/discover/parser.c @@ -22,9 +22,31 @@ struct p_item { STATIC_LIST(parsers); static char *local_path(struct discover_context *ctx, + struct discover_device *dev, const char *filename) { - return join_paths(ctx, ctx->device->mount_path, filename); + return join_paths(ctx, dev->mount_path, filename); +} + +int parser_request_file(struct discover_context *ctx, + struct discover_device *dev, const char *filename, + char **buf, int *len) + +{ + char *path; + int rc; + + /* we only support local files at present */ + if (!dev->mount_path) + return -1; + + path = local_path(ctx, dev, filename); + + rc = read_file(ctx, path, buf, len); + + talloc_free(path); + + return rc; } static int download_config(struct discover_context *ctx, char **buf, int *len) @@ -61,7 +83,7 @@ static void iterate_parser_files(struct discover_context *ctx, int rc, len; char *buf; - path = local_path(ctx, *filename); + path = local_path(ctx, ctx->device, *filename); if (!path) continue;