diff --git a/tools/boot/stretch/parse_isolinux b/tools/boot/stretch/parse_isolinux index 161ff09e..8c97804e 100755 --- a/tools/boot/stretch/parse_isolinux +++ b/tools/boot/stretch/parse_isolinux @@ -33,6 +33,8 @@ my @menu_number = (1,0,0,0,0); my @menu_title = ('', '', '', '', ''); my $menudepth = 0; my $pre = ""; +my $in_ifcpu = 0; +my $amd64_label = ""; my %menu; sub parse_file { @@ -48,6 +50,31 @@ sub parse_file { chomp $line; if ($line =~ /^\s*include\ (.*\.cfg)/) { parse_file($1); + } elsif ($line =~ /label archdetect/) { + # We don't have support for arch detection in Grub, so only + # show the amd64 options + $in_ifcpu = 1; + } elsif ($line =~ /kernel (.*c32)/) { + # This tells us that the matching "append" data will have + # the label we need to look for. Ugh! + if ($1 =~ /ifcpu64/) { + $in_ifcpu = 2; + } + } elsif ($line =~ /^\s*label (.*)/ && $1 =~ /$amd64_label/) { + $in_ifcpu = 3; + } elsif ($line =~ /^\s*append\ (.*\.cfg)/) { + if ($in_ifcpu == 3) { + parse_file($1); + $in_ifcpu = 1; + } + } elsif ($line =~ /append (.*)$/ && $in_ifcpu == 2) { + # Parse out the first entry - that's what we want to use + # as a label elsewhere. Ugh! + my @list = split(/ /, $1); + $amd64_label = $list[0]; + $in_ifcpu = 1; + } elsif ($line =~ /default archdetect/) { + $in_ifcpu = 0; } else { push(@lines, $line); }