e1531466e1
This change updates grub to the 2.04 release. The new release changed how grub is built, so the bootstrap and bootstrap.conf files have to be added to the dist-git. Also, the gitignore file changed so it has to be updated. Since the patches have been forward ported to 2.04, there's no need for a logic to maintain a patch with the delta between the release and the grub master branch. So the release-to-master.patch is dropped and no longer is updated by the do-rebase script. Also since gnulib isn't part of the grub repository anymore and cloned by the boostrap tool, a gnulib tarball is included as other source file and copied before calling the bootstrap tool. That way grub can be built even in builders that only have access to the sources lookaside cache. Resolves: rhbz#1727279 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
23 lines
762 B
Diff
23 lines
762 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Thu, 11 Jul 2019 11:04:24 +0200
|
|
Subject: [PATCH] gentpl: add 'pc' firmware type
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
gentpl.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/gentpl.py b/gentpl.py
|
|
index 3a0c04963aa..1d9dda430e7 100644
|
|
--- a/gentpl.py
|
|
+++ b/gentpl.py
|
|
@@ -51,6 +51,7 @@ GROUPS["riscv32"] = [ "riscv32_efi" ]
|
|
GROUPS["riscv64"] = [ "riscv64_efi" ]
|
|
|
|
# Groups based on firmware
|
|
+GROUPS["pc"] = [ "i386_pc" ]
|
|
GROUPS["efi"] = [ "i386_efi", "x86_64_efi", "ia64_efi", "arm_efi", "arm64_efi",
|
|
"riscv32_efi", "riscv64_efi" ]
|
|
GROUPS["ieee1275"] = [ "i386_ieee1275", "sparc64_ieee1275", "powerpc_ieee1275" ]
|