diff options
Diffstat (limited to 'discover')
-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); } |