X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fkboot-parser.c;h=bf9c5eb2fe98f5f59056cad85f47e018cb31a674;hp=8572674b982a94f1b49395cb3d504cf67f3f3879;hb=47d0601affe80d7f98a2053749f5e1d479f902f4;hpb=b8e53cb4b96eb17dc7fa0ffc505dfebae37e6cbf diff --git a/discover/kboot-parser.c b/discover/kboot-parser.c index 8572674..bf9c5eb 100644 --- a/discover/kboot-parser.c +++ b/discover/kboot-parser.c @@ -1,8 +1,11 @@ -#define _GNU_SOURCE +#if defined(HAVE_CONFIG_H) +#include "config.h" +#endif #include #include #include +#include #include "log/log.h" #include "talloc/talloc.h" @@ -94,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); @@ -180,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); }