From bb5c8a225867a126ce19d12cc4b4cdc710a4ebbc Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Fri, 20 Sep 2024 10:24:41 +0200 Subject: [PATCH] sys-kernel/bootengine: Bump to fix slow PXE/ISO boots with udev rule See: https://github.com/flatcar/bootengine/pull/98 See: https://github.com/flatcar/Flatcar/issues/1514 Signed-off-by: James Le Cuirot Signed-off-by: Mathieu Tortuyaux --- changelog/bugfixes/2024-08-22-slow-boot.md | 1 + ...otengine-0.0.38-r31.ebuild => bootengine-0.0.38-r32.ebuild} | 0 .../sys-kernel/bootengine/bootengine-9999.ebuild | 3 +-- 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 changelog/bugfixes/2024-08-22-slow-boot.md rename sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/{bootengine-0.0.38-r31.ebuild => bootengine-0.0.38-r32.ebuild} (100%) diff --git a/changelog/bugfixes/2024-08-22-slow-boot.md b/changelog/bugfixes/2024-08-22-slow-boot.md new file mode 100644 index 0000000000..e8461bddea --- /dev/null +++ b/changelog/bugfixes/2024-08-22-slow-boot.md @@ -0,0 +1 @@ +- Fixed slow boots PXE and ISO boots caused by the decrypt-root.service. ([Flatcar#1514](https://github.com/flatcar/flatcar/pull/1514)) diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.38-r31.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.38-r32.ebuild similarity index 100% rename from sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.38-r31.ebuild rename to sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.38-r32.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-9999.ebuild index 75931c150b..6bf200ba66 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-9999.ebuild @@ -10,7 +10,7 @@ CROS_WORKON_REPO="https://github.com" if [[ "${PV}" == 9999 ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~x86" else - CROS_WORKON_COMMIT="fb2631ce5e6a21d044c8dca73f59db01f9d5abcf" # flatcar-master + CROS_WORKON_COMMIT="d2e22122e8e106a21f64c048992290edc7053384" # flatcar-master KEYWORDS="amd64 arm arm64 x86" fi @@ -39,7 +39,6 @@ src_install() { "${D}"/usr/lib/dracut/modules.d/30ignition/ignition-setup-pre.sh \ "${D}"/usr/lib/dracut/modules.d/30ignition/ignition-kargs-helper \ "${D}"/usr/lib/dracut/modules.d/30ignition/retry-umount.sh \ - "${D}"/usr/lib/dracut/modules.d/31decrypt-root/decrypt-root \ "${D}"/usr/lib/dracut/modules.d/99setup-root/initrd-setup-root \ "${D}"/usr/lib/dracut/modules.d/99setup-root/initrd-setup-root-after-ignition \ "${D}"/usr/lib/dracut/modules.d/99setup-root/gpg-agent-wrapper \