X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fkboot-parser.c;h=bf9c5eb2fe98f5f59056cad85f47e018cb31a674;hp=cebe787fddb44d5c480461f4f91c38e207e992a5;hb=7e0b9da2ae2f96d24c711c0ad4d12bb193ec49c0;hpb=66bf929fa97fabb70198455f9eec2e9ccf0661fa diff --git a/discover/kboot-parser.c b/discover/kboot-parser.c index cebe787..bf9c5eb 100644 --- a/discover/kboot-parser.c +++ b/discover/kboot-parser.c @@ -5,6 +5,7 @@ #include #include #include +#include #include "log/log.h" #include "talloc/talloc.h" @@ -96,6 +97,12 @@ out_add: d_opt->boot_image = create_devpath_resource(d_opt, conf->dc->device, value); + char* args_sigfile_default = talloc_asprintf(d_opt, + "%s.cmdline.sig", value); + d_opt->args_sig_file = create_devpath_resource(d_opt, + conf->dc->device, args_sigfile_default); + talloc_free(args_sigfile_default); + if (root) { opt->boot_args = talloc_asprintf(opt, "root=%s %s", root, args); talloc_free(args); @@ -182,6 +189,9 @@ static int kboot_parse(struct discover_context *dc) continue; conf_parse_buf(conf, buf, len); + device_handler_status_dev_info(dc->handler, dc->device, + _("Parsed kboot configuration from %s"), + *filename); talloc_free(buf); }