chore: move system extensions' udev rules

Update packages and relevant paths
Ref: siderolabs/pkgs#1053

Signed-off-by: Dmitry Sharshakov <dmitry.sharshakov@siderolabs.com>
This commit is contained in:
Dmitry Sharshakov 2024-10-21 20:30:08 +02:00
parent 3067f64c84
commit 8680351c13
No known key found for this signature in database
GPG Key ID: 9866BBFAF691F3AF
6 changed files with 7 additions and 6 deletions

View File

@ -794,6 +794,7 @@ RUN <<END
END
FROM rootfs-base-${TARGETARCH} AS rootfs-base
RUN mkdir -p /rootfs/usr/etc
RUN echo "true" > /rootfs/usr/etc/in-container
RUN find /rootfs -print0 \
| xargs -0r touch --no-dereference --date="@${SOURCE_DATE_EPOCH}"

View File

@ -22,7 +22,7 @@ TOOLS ?= ghcr.io/siderolabs/tools:v1.9.0-alpha.0-4-g2058296
DEBUG_TOOLS_SOURCE := scratch
PKGS_PREFIX ?= ghcr.io/siderolabs
PKGS ?= v1.9.0-alpha.0-26-gc9282c8
PKGS ?= v1.9.0-alpha.0-28-g38304a6
EXTRAS ?= v1.9.0-alpha.0-1-geab6e58
KRES_IMAGE ?= ghcr.io/siderolabs/kres:latest

View File

@ -18,7 +18,7 @@ preface = """
[notes.updates]
title = "Component Updates"
description = """\
Linux: 6.6.57
Linux: 6.6.58
containerd: 2.0.0-rc.5
Flannel: 0.26.0
Kubernetes: 1.32.0-alpha.2

View File

@ -14,7 +14,7 @@ import (
const (
// DefaultKernelVersion is the default Linux kernel version.
DefaultKernelVersion = "6.6.57-talos"
DefaultKernelVersion = "6.6.58-talos"
// KernelModulesPath is the default path to the kernel modules without the kernel version.
KernelModulesPath = "/lib/modules"
@ -933,7 +933,7 @@ const (
KubeSpanLinkMinimumMTU = 1280
// UdevDir is the path to the udev directory.
UdevDir = "/usr/etc/udev"
UdevDir = "/usr/lib/udev"
// UdevRulesPath rules file path.
UdevRulesPath = UdevDir + "/" + "rules.d/99-talos.rules"

View File

@ -16,7 +16,7 @@ var AllowedPaths = []string{
"/lib64/ld-linux-x86-64.so.2",
// /sbin/ldconfig is required by the nvidia container toolkit.
"/sbin/ldconfig",
"/usr/etc/udev/rules.d",
"/usr/lib/udev/rules.d",
"/usr/local",
// glvnd, egl and vulkan are needed for OpenGL/Vulkan.
"/usr/share/glvnd",

View File

@ -1 +1 @@
v1.9.0-alpha.0-26-gc9282c8
v1.9.0-alpha.0-28-g38304a6