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>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
Date: Tue, 19 Jun 2018 15:20:54 +0200
|
|
Subject: [PATCH] docs: Add grub-boot-indeterminate.service example
|
|
|
|
This is an example service file, for use from
|
|
/lib/systemd/system/system-update.target.wants
|
|
to increment the boot_indeterminate variable when
|
|
doing offline updates.
|
|
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
---
|
|
docs/grub-boot-indeterminate.service | 11 +++++++++++
|
|
1 file changed, 11 insertions(+)
|
|
create mode 100644 docs/grub-boot-indeterminate.service
|
|
|
|
diff --git a/docs/grub-boot-indeterminate.service b/docs/grub-boot-indeterminate.service
|
|
new file mode 100644
|
|
index 00000000000..6c8dcb186b6
|
|
--- /dev/null
|
|
+++ b/docs/grub-boot-indeterminate.service
|
|
@@ -0,0 +1,11 @@
|
|
+[Unit]
|
|
+Description=Mark boot as indeterminate
|
|
+DefaultDependencies=false
|
|
+Requires=sysinit.target
|
|
+After=sysinit.target
|
|
+Wants=system-update-pre.target
|
|
+Before=system-update-pre.target
|
|
+
|
|
+[Service]
|
|
+Type=oneshot
|
|
+ExecStart=/usr/bin/grub2-editenv - incr boot_indeterminate
|