From eef79779d3a177bf3ed4990e833d8092a8db69bd Mon Sep 17 00:00:00 2001 From: Shawn Anastasio Date: Tue, 20 Nov 2018 23:02:25 -0600 Subject: [PATCH] discover/grub2: Add support for initrd16 builtin This commit adds support for the initrd16 builtin which compliments the existing linux16 support and improves usability on x86 platforms. Signed-off-by: Shawn Anastasio Signed-off-by: Samuel Mendoza-Jonas --- discover/grub2/builtins.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discover/grub2/builtins.c b/discover/grub2/builtins.c index e42821a..7e92299 100644 --- a/discover/grub2/builtins.c +++ b/discover/grub2/builtins.c @@ -355,6 +355,10 @@ static struct { .name = "initrd", .fn = builtin_initrd, }, + { + .name = "initrd16", + .fn = builtin_initrd, + }, { .name = "search", .fn = builtin_search, -- 2.39.2