sys-kernel/bootengine: Bump for better oem.id handling and vboxguest

This allows us to drop an Ignition patch.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
This commit is contained in:
James Le Cuirot 2026-04-27 18:30:02 +01:00
parent d7ba8a608d
commit 7b75de6f91
No known key found for this signature in database
GPG Key ID: 1226415D00DD3137
8 changed files with 5 additions and 52 deletions

View File

@ -1,46 +0,0 @@
From 60a6c5a81e06fbaed6939ac925937ca941f0732e Mon Sep 17 00:00:00 2001
From: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
Date: Tue, 20 Feb 2024 10:25:24 +0100
Subject: [PATCH 16/19] revert: internal/oem: drop noop OEMs
This reverts: https://github.com/flatcar/ignition/commit/26828f92e00060aa8ebf2197545ad602af237132
Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
---
internal/providers/metal/metal.go | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/internal/providers/metal/metal.go b/internal/providers/metal/metal.go
index 27c923d4..ae259f8f 100644
--- a/internal/providers/metal/metal.go
+++ b/internal/providers/metal/metal.go
@@ -26,10 +26,26 @@ import (
)
func init() {
+ platform.Register(platform.Provider{
+ Name: "cloudsigma",
+ Fetch: fetchConfig,
+ })
platform.Register(platform.Provider{
Name: "metal",
Fetch: fetchConfig,
})
+ platform.Register(platform.Provider{
+ Name: "rackspace",
+ Fetch: fetchConfig,
+ })
+ platform.Register(platform.Provider{
+ Name: "rackspace-onmetal",
+ Fetch: fetchConfig,
+ })
+ platform.Register(platform.Provider{
+ Name: "vagrant",
+ Fetch: fetchConfig,
+ })
}
func fetchConfig(f *resource.Fetcher) (types.Config, report.Report, error) {
--
2.51.0

View File

@ -31,10 +31,9 @@ else
"${FILESDIR}/0013-Partially-revert-drop-OEM-URI-support.patch"
"${FILESDIR}/0014-config-Support-oem-schema-in-newer-config-spec-versi.patch"
"${FILESDIR}/0015-translation-support-OEM-and-oem.patch"
"${FILESDIR}/0016-revert-internal-oem-drop-noop-OEMs.patch"
"${FILESDIR}/0017-docs-Add-re-added-platforms-to-docs-to-pass-tests.patch"
"${FILESDIR}/0018-usr-share-oem-oem.patch"
"${FILESDIR}/0019-internal-exec-stages-mount-Mount-oem.patch"
"${FILESDIR}/0016-docs-Add-re-added-platforms-to-docs-to-pass-tests.patch"
"${FILESDIR}/0017-usr-share-oem-oem.patch"
"${FILESDIR}/0018-internal-exec-stages-mount-Mount-oem.patch"
)
fi

View File

@ -1 +1 @@
DIST bootengine-003a67d93a99705391a0a1fa825f018b074d8e8b.tar.gz 37805 BLAKE2B 25abb7cf425a02c330245c7efc63406ee823fd9921afd39f9b413eda1451fa48ed150dd104cb550f9b81e7445b4c9e50a0ec55077dbf6de0c712cbcb7339dd67 SHA512 a9246398a560a7bbdb7b1d714012fdca65a2475843cfcb5fd20551086165623d248c577b6170fb32a75709a67014b33581c415e4c5410202e29a57e6a0ff6d88
DIST bootengine-32aede10a3d9e20036ead7e2dc45242f0f273f45.tar.gz 37819 BLAKE2B 4f69f3373d6098516072391767ce14b00ff4226fab275ca8e0998edf2b05f4eb5f4b1ae9a0bf8851c60206602a57a61f0a195ddf7871588e84c2f32310a9ca91 SHA512 1b791e65dc9ce3b8e322262ae588e546b25977902be96cbe2a62bd67ee703362b4c327430ff918011819f8d91f9ce7340efd86122c1b24da3eccfa729ba356f0

View File

@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/flatcar/bootengine.git"
inherit git-r3
else
EGIT_VERSION="003a67d93a99705391a0a1fa825f018b074d8e8b" # flatcar-master
EGIT_VERSION="32aede10a3d9e20036ead7e2dc45242f0f273f45"
SRC_URI="https://github.com/flatcar/bootengine/archive/${EGIT_VERSION}.tar.gz -> ${PN}-${EGIT_VERSION}.tar.gz"
S="${WORKDIR}/${PN}-${EGIT_VERSION}"
KEYWORDS="amd64 arm arm64 x86"