diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2016-12-12 21:20:22 +0800 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-12-20 16:40:21 +1100 |
commit | 5b33aaaaad68b890aacc3ddc4e47812a58d8c1e6 (patch) | |
tree | 087fd05bcd9069edbe0f213e6d0a3ce8178e966b | |
parent | c9b3a69b272a305dfc40bb4f0d5b8e3b6f6f2521 (diff) | |
download | petitboot-5b33aaaaad68b890aacc3ddc4e47812a58d8c1e6.zip petitboot-5b33aaaaad68b890aacc3ddc4e47812a58d8c1e6.tar.gz |
discover/status: Add parse status for GRUB2, yaboot & kboot parsers
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
-rw-r--r-- | discover/grub2/grub2.c | 4 | ||||
-rw-r--r-- | discover/kboot-parser.c | 4 | ||||
-rw-r--r-- | discover/yaboot-parser.c | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/discover/grub2/grub2.c b/discover/grub2/grub2.c index 5b3009a..3474616 100644 --- a/discover/grub2/grub2.c +++ b/discover/grub2/grub2.c @@ -1,6 +1,7 @@ #include <assert.h> #include <string.h> +#include <i18n/i18n.h> #include <talloc/talloc.h> #include <url/url.h> @@ -103,6 +104,9 @@ static int grub2_parse(struct discover_context *dc) parser = grub2_parser_create(dc); grub2_parser_parse(parser, *filename, buf, len); + device_handler_status_dev_info(dc->handler, dc->device, + _("Parsed GRUB configuration from %s"), + *filename); talloc_free(buf); talloc_free(parser); break; diff --git a/discover/kboot-parser.c b/discover/kboot-parser.c index f7f75e0..bf9c5eb 100644 --- a/discover/kboot-parser.c +++ b/discover/kboot-parser.c @@ -5,6 +5,7 @@ #include <assert.h> #include <stdlib.h> #include <string.h> +#include <i18n/i18n.h> #include "log/log.h" #include "talloc/talloc.h" @@ -188,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); } diff --git a/discover/yaboot-parser.c b/discover/yaboot-parser.c index b62f39d..42db95b 100644 --- a/discover/yaboot-parser.c +++ b/discover/yaboot-parser.c @@ -6,6 +6,7 @@ #include <stdlib.h> #include <string.h> #include <ctype.h> +#include <i18n/i18n.h> #include "log/log.h" #include "talloc/talloc.h" @@ -380,6 +381,9 @@ static int yaboot_parse(struct discover_context *dc) continue; conf_parse_buf(conf, buf, len); + device_handler_status_dev_info(dc->handler, dc->device, + _("Parsed yaboot configuration from %s"), + *filename); talloc_free(buf); } |