Skip to content

Commit 93f0620

Browse files
authored
Merge branch 'main' into feature/enable-rockchip-in-kernel
2 parents c224ed5 + f8bf613 commit 93f0620

File tree

18 files changed

+311
-52
lines changed

18 files changed

+311
-52
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- systemd ([256.9](https://github.com/systemd/system/releases/tag/v256.9) (from 255.8))
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Linux ([6.6.67](https://lwn.net/Articles/1002919) (includes [6.6.66](https://lwn.net/Articles/1002177)))

ci-automation/ci-config.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ AZURE_PARALLEL="${PARALLEL_TESTS:-20}"
158158
AZURE_LOCATION="${AZURE_LOCATION:-westeurope}"
159159

160160
# -- Openstack --
161-
: ${OPENSTACK_IMAGE_NAME:='flatcar_production_openstack_image.img.gz'}
161+
: ${OPENSTACK_IMAGE_NAME:='flatcar_production_openstack_image.img'}
162162
OPENSTACK_PARALLEL="${PARALLEL_TESTS:-3}"
163163

164164
# -- Brightbox --
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FLATCAR_VERSION=4187.0.0+nightly-20241217-2100
2-
FLATCAR_VERSION_ID=4187.0.0
3-
FLATCAR_BUILD_ID="nightly-20241217-2100"
4-
FLATCAR_SDK_VERSION=4187.0.0+nightly-20241217-2100
1+
FLATCAR_VERSION=4200.0.0+nightly-20251230-2100
2+
FLATCAR_VERSION_ID=4200.0.0
3+
FLATCAR_BUILD_ID="nightly-20251230-2100"
4+
FLATCAR_SDK_VERSION=4200.0.0+nightly-20251230-2100
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hv-daemons-9999.ebuild

sdk_container/src/third_party/coreos-overlay/coreos-base/update_engine/update_engine-9999.ebuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ EGIT_REPO_URI="https://github.com/flatcar/update_engine.git"
77
if [[ "${PV}" == 9999 ]]; then
88
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
99
else
10-
EGIT_COMMIT="541576a4dcd56397597abef7d9ce4c539631ed65" # flatcar-master
10+
EGIT_COMMIT="46e1984f2c91e3d14bad9323a6bf32a9c6662fbc" # flatcar-master
1111
KEYWORDS="amd64 arm64"
1212
fi
1313

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DIST systemd-stable-255.8.tar.gz 15070471 BLAKE2B b437404af7fd73ef527f80d9d14d46a781444103d1756c27494ecf2664c9c5efe1169c85b91148a3bf190dc7c5e31cf8d42a13c84102d101ea7e4a0570e8d719 SHA512 7692be761a393924669a90f6f343998a85707a9daa3ce169ce67f62ae2a39338c2c3496066b2659c6500849104fab0529fca5704a3eb32375f2f44131216d1f1
1+
DIST systemd-256.9.tar.gz 15774953 BLAKE2B caeff33d0906583094a44ab89fe9a9c1832a665f8cc768f86c55c5100bdd5c2b1500b2cd65e9519ef21d79bff92d1da3e84240793099a0e0c508afba3669c46e SHA512 aba7a0f7149fe3d28d9f930f244d5b997c28721e93e6f0768b0f0f1c918c87a0e8b7b347cffb2faa4740ca3ee3b04984454e85757365090a2cf32aba09f70681

sdk_container/src/third_party/coreos-overlay/sys-apps/systemd/files/0002-networkd-default-to-kernel-IPForwarding-setting.patch

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
From 65e3f4e837001f6f00359a779b6c5801566aa750 Mon Sep 17 00:00:00 2001
2+
From: Adrian Vladu <avladu@cloudbasesolutions.com>
3+
Date: Wed, 25 Sep 2024 15:51:02 +0000
4+
Subject: [PATCH] Revert "Revert "initrd-parse-etc: override argv[0] to avoid
5+
dracut issue""
6+
7+
This reverts commit 1c585a4ccda3258088d7bc27b27a314e7ed8be80.
8+
---
9+
units/initrd-parse-etc.service.in | 4 +++-
10+
1 file changed, 3 insertions(+), 1 deletion(-)
11+
12+
diff --git a/units/initrd-parse-etc.service.in b/units/initrd-parse-etc.service.in
13+
index 1eef2bd9be..3dadab1123 100644
14+
--- a/units/initrd-parse-etc.service.in
15+
+++ b/units/initrd-parse-etc.service.in
16+
@@ -23,7 +23,9 @@ OnFailureJobMode=replace-irreversibly
17+
[Service]
18+
Type=oneshot
19+
20+
-ExecStart={{LIBEXECDIR}}/systemd-sysroot-fstab-check
21+
+# FIXME: once dracut is patched to install the symlink, change to:
22+
+# ExecStart={{LIBEXECDIR}}/systemd-sysroot-fstab-check
23+
+ExecStart=@{{SYSTEM_GENERATOR_DIR}}/systemd-fstab-generator systemd-sysroot-fstab-check
24+
25+
# We want to enqueue initrd-cleanup.service/start after we finished the part
26+
# above. It can't be part of the initial transaction, because non-oneshot units
27+
--
28+
2.34.1
29+

0 commit comments

Comments
 (0)