From 597fea5a64694cfbde35eba3f25206c1bcdec8da Mon Sep 17 00:00:00 2001 From: Markus Hilger Date: Fri, 12 Jul 2024 19:43:14 +0200 Subject: [PATCH] Enable grub2 support for x86 --- perl-xCAT/xCAT/Utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Utils.pm b/perl-xCAT/xCAT/Utils.pm index 1c8ee9d5a4..2c510bda95 100644 --- a/perl-xCAT/xCAT/Utils.pm +++ b/perl-xCAT/xCAT/Utils.pm @@ -4828,7 +4828,7 @@ sub lookupNetboot { $ret = "nimol"; } elsif ($imgtype =~ /^Linux$/i) { if ($osarch =~ /^x86_64$/i) { - $ret = "xnba,pxe"; + $ret = "xnba,pxe,grub2"; } elsif ($osarch =~ /^ppc64$/i) { if (($osv =~ /rh/i and $osn < 7) or ($osv =~ /sles/i and ($osn < 11 or ($osn == 11 and $osm < 4)))) { $ret = "yaboot";