]> git.ozlabs.org Git - petitboot/blobdiff - discover/grub2/grub2.c
discover/pb-discover: #include <locale.h> for musl libc
[petitboot] / discover / grub2 / grub2.c
index ffb6ecefcb5ab13a166cbdab8a0092db85a81ccd..34746164728f4e3edc166a7c39f1039e94227f15 100644 (file)
@@ -1,5 +1,7 @@
 
 #include <assert.h>
+#include <string.h>
+#include <i18n/i18n.h>
 
 #include <talloc/talloc.h>
 #include <url/url.h>
@@ -9,8 +11,6 @@
 #include <discover/parser-utils.h>
 
 #include "grub2.h"
-#include "parser.h"
-#include "lexer.h"
 
 static const char *const grub2_conf_files[] = {
        "/grub.cfg",
@@ -103,7 +103,10 @@ static int grub2_parse(struct discover_context *dc)
                        continue;
 
                parser = grub2_parser_create(dc);
-               grub2_parser_parse(parser, buf, len);
+               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;