From: Demi Marie Obenour <demiobenour@gmail.com>
To: Spectrum OS Development <devel@spectrum-os.org>
Cc: Demi Marie Obenour <demiobenour@gmail.com>, Alyssa Ross <hi@alyssa.is>
Subject: [PATCH v6 2/2] host/rootfs: Switch to systemd-udevd
Date: Mon, 03 Nov 2025 03:29:22 -0500 [thread overview]
Message-ID: <20251103-udev-v6-2-704649b85d6d@gmail.com> (raw)
In-Reply-To: <20251103-udev-v6-0-704649b85d6d@gmail.com>
This replaces the mdevd uevent daemon with systemd-udevd, which supports
much more hardware and is therefore to be preferred for a full desktop
environment. Various Wayland compositors integrate with systemd-udevd,
allowing them to discover devices as they appear rather than having to
only use devices plugged in when the compositor is started.
Additionally, systemd-udevd has quirks for various devices that are
needed to support the wide variety of hardware end-users have.
The dependency on /dev/dri/card0 being present is eliminated, and
whatever devices the user has are now picked up by the compositor. New
dependencies are added to ensure that udev coldplug has finished before
any non-trivial services are started. systemd-udev-trigger.service runs
'udevadm trigger' and has Before=sysinit.target, so anything that is not
an early boot service can assume 'udevadm trigger' has run.
systemd-udevd unsets PATH before it runs programs. Therefore, manually
set it to /usr/bin before invoking any scripts.
systemd-udevd provides the 'udevadm wait' command to wait for a device
to appear and be processed. This replaces all uses of /etc/mdev/wait,
so this script is removed. /etc/mdev/listen and /run/wait only existed
to wake up /etc/mdev/wait, so they are also removed.
The command-line options to 'udevadm trigger' are taken from
systemd-udev-trigger.service on my Arch machine. Using the wrong
arguments leads to problems that take a very long time to debug.
Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
---
host/rootfs/Makefile | 2 +-
host/rootfs/default.nix | 118 ++++++++-------------
host/rootfs/file-list.mk | 33 +++---
host/rootfs/image/etc/mdev.conf | 7 --
host/rootfs/image/etc/mdev/listen | 11 --
host/rootfs/image/etc/mdev/wait | 14 ---
host/rootfs/image/etc/s6-rc/card0/type.license | 2 -
host/rootfs/image/etc/s6-rc/card0/up | 4 -
host/rootfs/image/etc/s6-rc/kvm/timeout-up | 1 -
host/rootfs/image/etc/s6-rc/kvm/timeout-up.license | 2 -
host/rootfs/image/etc/s6-rc/kvm/type | 1 -
host/rootfs/image/etc/s6-rc/kvm/type.license | 2 -
host/rootfs/image/etc/s6-rc/kvm/up | 4 -
host/rootfs/image/etc/s6-rc/mdevd-coldplug/type | 1 -
host/rootfs/image/etc/s6-rc/mdevd-coldplug/up | 4 -
.../image/etc/s6-rc/mdevd/notification-fd.license | 2 -
host/rootfs/image/etc/s6-rc/mdevd/run | 5 -
.../contents.d/systemd-udevd-coldplug} | 0
.../dependencies.d/systemd-udevd} | 0
.../s6-rc/{card0 => systemd-udevd-coldplug}/type | 0
.../type.license | 0
.../image/etc/s6-rc/systemd-udevd-coldplug/up | 3 +
.../s6-rc/{mdevd => systemd-udevd}/notification-fd | 0
.../s6-rc/systemd-udevd/notification-fd.license | 2 +
host/rootfs/image/etc/s6-rc/systemd-udevd/run | 14 +++
.../image/etc/s6-rc/{mdevd => systemd-udevd}/type | 0
.../s6-rc/{mdevd => systemd-udevd}/type.license | 0
.../contents.d/systemd-udevd-coldplug} | 0
.../contents.d/systemd-udevd-coldplug} | 0
.../weston/dependencies.d/systemd-udevd-coldplug | 0
host/rootfs/image/etc/s6-rc/weston/run | 6 +-
.../image/etc/udev/rules.d/99-spectrum.rules | 9 ++
host/rootfs/image/usr/bin/run-vmm | 1 +
host/rootfs/image/usr/bin/systemd-udevd | 1 +
.../{etc/mdev/net/add => usr/libexec/net-add} | 0
35 files changed, 90 insertions(+), 159 deletions(-)
diff --git a/host/rootfs/Makefile b/host/rootfs/Makefile
index aa45ca1d5c18d0dfb78d19267f263cc4222e8e84..00d125774bb7b98736d0928c69cb307740cee034 100644
--- a/host/rootfs/Makefile
+++ b/host/rootfs/Makefile
@@ -12,6 +12,7 @@ DIRS = \
dev \
etc/s6-linux-init/env \
etc/s6-linux-init/run-image/configs \
+ etc/s6-linux-init/run-image/sd-notify-wrapper \
etc/s6-linux-init/run-image/service/dbus/instance \
etc/s6-linux-init/run-image/service/dbus/instances \
etc/s6-linux-init/run-image/service/dbus/template/data \
@@ -36,7 +37,6 @@ DIRS = \
etc/s6-linux-init/run-image/user \
etc/s6-linux-init/run-image/vm/by-id \
etc/s6-linux-init/run-image/vm/by-name \
- etc/s6-linux-init/run-image/wait \
ext \
proc \
run \
diff --git a/host/rootfs/default.nix b/host/rootfs/default.nix
index 9632f52674521bafb4ca122f15fc30a52abaad18..0d79f7ca54ccc86eb0fa6e743f2011237d365f24 100644
--- a/host/rootfs/default.nix
+++ b/host/rootfs/default.nix
@@ -8,88 +8,48 @@ import ../../lib/call-package.nix (
}:
pkgsStatic.callPackage (
-{ spectrum-host-tools
-, lib, stdenvNoCC, nixos, runCommand, writeClosure, erofs-utils, s6-rc
-, busybox, cloud-hypervisor, cryptsetup, dbus, execline, inkscape
-, iproute2, inotify-tools, jq, kmod, mdevd, s6, s6-linux-init, socat
-, util-linuxMinimal, virtiofsd, xorg, xdg-desktop-portal-spectrum-host
+{ busybox, cloud-hypervisor, cryptsetup, dbus, erofs-utils, execline
+, inkscape, inotify-tools, iproute2, jq, lib, mdevd, nixos
+, runCommand, s6, s6-linux-init, s6-rc, socat, spectrum-host-tools
+, stdenvNoCC, util-linuxMinimal, virtiofsd, writeClosure
+, xdg-desktop-portal-spectrum-host, xorg
}:
-
let
- inherit (nixosAllHardware.config.hardware) firmware;
inherit (lib)
- concatMapStringsSep concatStrings escapeShellArgs fileset optionalAttrs
+ concatMapStringsSep concatStrings escapeShellArgs fileset
mapAttrsToList systems trivial;
-
pkgsGui = pkgsMusl.extend (
- final: super:
- (optionalAttrs (systems.equals pkgsMusl.stdenv.hostPlatform super.stdenv.hostPlatform) {
- flatpak = super.flatpak.override {
- withMalcontent = false;
- };
-
- libgudev = super.libgudev.overrideAttrs ({ ... }: {
- # Tests use umockdev, which is not compatible with libudev-zero.
- doCheck = false;
- });
-
- qt6 = super.qt6.overrideScope (_: prev: {
- qttranslations = prev.qttranslations.override {
- qttools = prev.qttools.override {
- qtbase = prev.qtbase.override {
- qttranslations = null;
- systemdSupport = false;
- };
- qtdeclarative = null;
- };
- };
-
- qtbase = prev.qtbase.override {
- systemdSupport = false;
- };
- });
-
- systemd = super.systemd.overrideAttrs ({ meta ? { }, ... }: {
+ _final: super:
+ (lib.optionalAttrs (systems.equals pkgsMusl.stdenv.hostPlatform super.stdenv.hostPlatform) {
+ malcontent = super.malcontent.overrideAttrs ({ meta ? { }, ... }: {
meta = meta // {
platforms = [ ];
};
});
+ }));
+in
+# Something already pulls in the full
+# systemd, so might as well use it.
+pkgsGui.callPackage (
+{ cosmic-files, crosvm, dejavu_fonts, foot, kmod, mesa
+, systemd, westonLite, xdg-desktop-portal, xdg-desktop-portal-gtk
+}:
- upower = super.upower.override {
- # Not ideal, but it's the best way to get rid of an installed
- # test that needs umockdev.
- withIntrospection = false;
- };
-
- udev = final.libudev-zero;
-
- weston = super.weston.overrideAttrs ({ mesonFlags ? [], ... }: {
- mesonFlags = mesonFlags ++ [
- "-Dsystemd=false"
- ];
- });
-
- xdg-desktop-portal = (super.xdg-desktop-portal.override {
- enableSystemd = false;
- }).overrideAttrs ({ ... }: {
- # Tests use umockdev.
- doCheck = false;
- });
- })
- );
-
- foot = pkgsGui.foot.override { allowPgo = false; };
+let
+ inherit (nixosAllHardware.config.hardware) firmware;
+ no_pgo_foot = foot.override { allowPgo = false; };
packages = [
- cloud-hypervisor cryptsetup dbus execline inotify-tools iproute2
- jq kmod mdevd s6 s6-linux-init s6-rc socat spectrum-host-tools
- virtiofsd xdg-desktop-portal-spectrum-host
+ cloud-hypervisor crosvm cryptsetup dbus execline inotify-tools
+ iproute2 jq mdevd s6 s6-linux-init s6-rc socat
+ spectrum-host-tools virtiofsd xdg-desktop-portal-spectrum-host
(busybox.override {
extraConfig = ''
CONFIG_CHATTR n
CONFIG_DEPMOD n
CONFIG_FINDFS n
+ CONFIG_HALT n
CONFIG_INIT n
CONFIG_INSMOD n
CONFIG_IP n
@@ -100,10 +60,13 @@ let
CONFIG_MODINFO n
CONFIG_MODPROBE n
CONFIG_MOUNT n
+ CONFIG_POWEROFF n
+ CONFIG_REBOOT n
CONFIG_RMMOD n
+ CONFIG_SHUTDOWN n
'';
})
- ] ++ (with pkgsGui; [ cosmic-files crosvm foot ]);
+ ];
nixosAllHardware = nixos ({ modulesPath, ... }: {
imports = [ (modulesPath + "/profiles/all-hardware.nix") ];
@@ -113,14 +76,15 @@ let
kernel = linux_latest;
- appvm = callSpectrumPackage ../../img/app { inherit (foot) terminfo; };
- netvm = callSpectrumPackage ../../vm/sys/net { inherit (foot) terminfo; };
+ appvm = callSpectrumPackage ../../img/app { inherit (no_pgo_foot) terminfo; };
+ netvm = callSpectrumPackage ../../vm/sys/net { inherit (no_pgo_foot) terminfo; };
# Packages that should be fully linked into /usr,
# (not just their bin/* files).
usrPackages = [
- appvm kernel.modules firmware netvm
- ] ++ (with pkgsGui; [ mesa dejavu_fonts westonLite ]);
+ appvm kernel.modules firmware kmod kmod.lib
+ netvm mesa dejavu_fonts westonLite
+ ];
appvms = {
appvm-firefox = callSpectrumPackage ../../vm/app/firefox.nix {};
@@ -138,16 +102,16 @@ let
# Weston doesn't support SVG icons.
inkscape -w 20 -h 20 \
-o $out/usr/share/icons/hicolor/20x20/apps/com.system76.CosmicFiles.png \
- ${pkgsGui.cosmic-files}/share/icons/hicolor/24x24/apps/com.system76.CosmicFiles.svg
+ ${cosmic-files}/share/icons/hicolor/24x24/apps/com.system76.CosmicFiles.svg
ln -st $out/usr/bin \
${concatMapStringsSep " " (p: "${p}/bin/*") packages} \
- ${pkgsGui.xdg-desktop-portal}/libexec/xdg-document-portal \
- ${pkgsGui.xdg-desktop-portal-gtk}/libexec/xdg-desktop-portal-gtk
+ ${xdg-desktop-portal}/libexec/xdg-document-portal \
+ ${xdg-desktop-portal-gtk}/libexec/xdg-desktop-portal-gtk
ln -st $out/usr/share/dbus-1 \
${dbus}/share/dbus-1/session.conf
ln -st $out/usr/share/dbus-1/services \
- ${pkgsGui.xdg-desktop-portal-gtk}/share/dbus-1/services/org.freedesktop.impl.portal.desktop.gtk.service
+ ${xdg-desktop-portal-gtk}/share/dbus-1/services/org.freedesktop.impl.portal.desktop.gtk.service
for pkg in ${escapeShellArgs usrPackages}; do
lndir -ignorelinks -silent "$pkg" "$out/usr"
@@ -161,6 +125,10 @@ let
# programs we want.
# https://lore.kernel.org/util-linux/87zgrl6ufb.fsf@alyssa.is/
ln -s ${util-linuxMinimal}/bin/{findfs,uuidgen,lsblk,mount} $out/usr/bin
+
+ # TODO: this is another hack and it should be possible
+ # to build systemd without this.
+ ln -s -- ${lib.escapeShellArg systemd}/bin/udevadm "$out/usr/bin"
'';
in
@@ -197,7 +165,7 @@ stdenvNoCC.mkDerivation {
dontFixup = true;
passthru = {
- inherit appvm firmware kernel nixosAllHardware packagesSysroot pkgsGui;
+ inherit appvm firmware kernel nixosAllHardware packagesSysroot;
};
meta = with lib; {
@@ -205,4 +173,4 @@ stdenvNoCC.mkDerivation {
platforms = platforms.linux;
};
}
-) {}) (_: {})
+) {}) {}) (_: {})
diff --git a/host/rootfs/file-list.mk b/host/rootfs/file-list.mk
index 3694dc472a013fff931847171145465329fb800f..9acaa1d90bed674814775becf89c1c847d0ce3e3 100644
--- a/host/rootfs/file-list.mk
+++ b/host/rootfs/file-list.mk
@@ -7,10 +7,6 @@ FILES = \
image/etc/group \
image/etc/init \
image/etc/login \
- image/etc/mdev.conf \
- image/etc/mdev/listen \
- image/etc/mdev/net/add \
- image/etc/mdev/wait \
image/etc/parse-devname \
image/etc/passwd \
image/etc/s6-linux-init/env/WAYLAND_DISPLAY \
@@ -46,6 +42,7 @@ FILES = \
image/etc/s6-linux-init/run-image/service/xdg-desktop-portal-spectrum-host/template/notification-fd \
image/etc/s6-linux-init/run-image/service/xdg-desktop-portal-spectrum-host/template/run \
image/etc/s6-linux-init/scripts/rc.init \
+ image/etc/udev/rules.d/99-spectrum.rules \
image/etc/xdg/weston/autolaunch \
image/etc/xdg/weston/weston.ini \
image/usr/bin/assign-devices \
@@ -57,6 +54,7 @@ FILES = \
image/usr/bin/vm-start \
image/usr/bin/vm-stop \
image/usr/bin/xdg-open \
+ image/usr/libexec/net-add \
image/usr/share/dbus-1/services/org.freedesktop.portal.Documents.service
LINKS = \
@@ -64,24 +62,14 @@ LINKS = \
image/etc/s6-linux-init/run-image/opengl-driver \
image/etc/s6-linux-init/run-image/service/vmm/template/run \
image/lib \
- image/sbin
+ image/sbin \
+ image/usr/bin/systemd-udevd
S6_RC_FILES = \
- image/etc/s6-rc/card0/type \
- image/etc/s6-rc/card0/up \
image/etc/s6-rc/core/type \
image/etc/s6-rc/core/up \
- image/etc/s6-rc/kvm/timeout-up \
- image/etc/s6-rc/kvm/type \
- image/etc/s6-rc/kvm/up \
- image/etc/s6-rc/mdevd-coldplug/dependencies.d/mdevd \
- image/etc/s6-rc/mdevd-coldplug/type \
- image/etc/s6-rc/mdevd-coldplug/up \
- image/etc/s6-rc/mdevd/notification-fd \
- image/etc/s6-rc/mdevd/run \
- image/etc/s6-rc/mdevd/type \
- image/etc/s6-rc/ok-all/contents.d/mdevd-coldplug \
image/etc/s6-rc/ok-all/contents.d/sys-vmms \
+ image/etc/s6-rc/ok-all/contents.d/systemd-udevd-coldplug \
image/etc/s6-rc/ok-all/contents.d/vm-env \
image/etc/s6-rc/ok-all/type \
image/etc/s6-rc/static-nodes/type \
@@ -89,14 +77,21 @@ S6_RC_FILES = \
image/etc/s6-rc/sys-vmms/dependencies.d/vmm-env \
image/etc/s6-rc/sys-vmms/type \
image/etc/s6-rc/sys-vmms/up \
+ image/etc/s6-rc/systemd-udevd-coldplug/dependencies.d/systemd-udevd \
+ image/etc/s6-rc/systemd-udevd-coldplug/type \
+ image/etc/s6-rc/systemd-udevd-coldplug/up \
+ image/etc/s6-rc/systemd-udevd/notification-fd \
+ image/etc/s6-rc/systemd-udevd/run \
+ image/etc/s6-rc/systemd-udevd/type \
image/etc/s6-rc/vm-env/contents.d/static-nodes \
+ image/etc/s6-rc/vm-env/contents.d/systemd-udevd-coldplug \
image/etc/s6-rc/vm-env/contents.d/weston \
image/etc/s6-rc/vm-env/type \
image/etc/s6-rc/vmm-env/contents.d/core \
- image/etc/s6-rc/vmm-env/contents.d/kvm \
image/etc/s6-rc/vmm-env/contents.d/static-nodes \
+ image/etc/s6-rc/vmm-env/contents.d/systemd-udevd-coldplug \
image/etc/s6-rc/vmm-env/type \
- image/etc/s6-rc/weston/dependencies.d/card0 \
+ image/etc/s6-rc/weston/dependencies.d/systemd-udevd-coldplug \
image/etc/s6-rc/weston/notification-fd \
image/etc/s6-rc/weston/run \
image/etc/s6-rc/weston/type
diff --git a/host/rootfs/image/etc/mdev.conf b/host/rootfs/image/etc/mdev.conf
deleted file mode 100644
index bddcfdc44ec2a8b1aa95e84cb88fdde625c766d8..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/mdev.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2021-2022, 2024 Alyssa Ross <hi@alyssa.is>
-
-$PCI_CLASS=^2....$ 0:0 660 +/etc/mdev/net/add
--$MODALIAS=.* 0:0 660 +importas -Siu MODALIAS modprobe -q $MODALIAS
-kvm 0:0 660 +background { /etc/mdev/listen kvm }
-dri/card0 0:0 660 +background { /etc/mdev/listen card0 }
diff --git a/host/rootfs/image/etc/mdev/listen b/host/rootfs/image/etc/mdev/listen
deleted file mode 100755
index ab50ee8c5ed1139d1129bac56afa7263af150745..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/mdev/listen
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/execlineb -S1
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>
-
-foreground {
- redirfd -w 2 /dev/null
- mkfifo /run/wait/${1}
-}
-
-redirfd -w 1 /run/wait/${1}
-echo
diff --git a/host/rootfs/image/etc/mdev/wait b/host/rootfs/image/etc/mdev/wait
deleted file mode 100755
index 6bddb303d2671ce4e5b8581cd81235d7404916e7..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/mdev/wait
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/execlineb -S1
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>
-
-foreground {
- redirfd -w 2 /dev/null
- mkfifo /run/wait/${1}
-}
-
-foreground {
- redirfd -w 1 /dev/null
- head -1 /run/wait/${1}
-}
-rm /run/wait/${1}
diff --git a/host/rootfs/image/etc/s6-rc/card0/type.license b/host/rootfs/image/etc/s6-rc/card0/type.license
deleted file mode 100644
index c49c11b66262c7edc57ac06a486c1166d867c31d..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/card0/type.license
+++ /dev/null
@@ -1,2 +0,0 @@
-SPDX-License-Identifier: CC0-1.0
-SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>
diff --git a/host/rootfs/image/etc/s6-rc/card0/up b/host/rootfs/image/etc/s6-rc/card0/up
deleted file mode 100644
index 703562e5442aea45198350afe86a8f38c11ed072..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/card0/up
+++ /dev/null
@@ -1,4 +0,0 @@
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>
-
-/etc/mdev/wait card0
diff --git a/host/rootfs/image/etc/s6-rc/kvm/timeout-up b/host/rootfs/image/etc/s6-rc/kvm/timeout-up
deleted file mode 100644
index c5da56ae490a8ab35074fdcb6644a0dbbd280e3b..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/kvm/timeout-up
+++ /dev/null
@@ -1 +0,0 @@
-40000
diff --git a/host/rootfs/image/etc/s6-rc/kvm/timeout-up.license b/host/rootfs/image/etc/s6-rc/kvm/timeout-up.license
deleted file mode 100644
index d705e974a864074490588104a24a9ea789141572..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/kvm/timeout-up.license
+++ /dev/null
@@ -1,2 +0,0 @@
-SPDX-License-Identifier: CC0-1.0
-SPDX-FileCopyrightText: 2024 Alyssa Ross <hi@alyssa.is>
diff --git a/host/rootfs/image/etc/s6-rc/kvm/type b/host/rootfs/image/etc/s6-rc/kvm/type
deleted file mode 100644
index bdd22a1850ae6c03a414eeb8084998679a2cdf92..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/kvm/type
+++ /dev/null
@@ -1 +0,0 @@
-oneshot
diff --git a/host/rootfs/image/etc/s6-rc/kvm/type.license b/host/rootfs/image/etc/s6-rc/kvm/type.license
deleted file mode 100644
index a941ca495a4211cf6659eda03b30f83c02985fe6..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/kvm/type.license
+++ /dev/null
@@ -1,2 +0,0 @@
-SPDX-License-Identifier: CC0-1.0
-SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is>
diff --git a/host/rootfs/image/etc/s6-rc/kvm/up b/host/rootfs/image/etc/s6-rc/kvm/up
deleted file mode 100644
index c02e3f90245e005b98b4de8245a1863fb49c1158..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/kvm/up
+++ /dev/null
@@ -1,4 +0,0 @@
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is>
-
-/etc/mdev/wait kvm
diff --git a/host/rootfs/image/etc/s6-rc/mdevd-coldplug/type b/host/rootfs/image/etc/s6-rc/mdevd-coldplug/type
deleted file mode 100644
index bdd22a1850ae6c03a414eeb8084998679a2cdf92..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/mdevd-coldplug/type
+++ /dev/null
@@ -1 +0,0 @@
-oneshot
diff --git a/host/rootfs/image/etc/s6-rc/mdevd-coldplug/up b/host/rootfs/image/etc/s6-rc/mdevd-coldplug/up
deleted file mode 100644
index 8698f7d7988a017786fb91a584eafbfb23b3165d..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/mdevd-coldplug/up
+++ /dev/null
@@ -1,4 +0,0 @@
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2020-2021 Alyssa Ross <hi@alyssa.is>
-
-mdevd-coldplug
diff --git a/host/rootfs/image/etc/s6-rc/mdevd/notification-fd.license b/host/rootfs/image/etc/s6-rc/mdevd/notification-fd.license
deleted file mode 100644
index 2b3b032142b7286bd317cf0abaa44fba3a9b8941..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/mdevd/notification-fd.license
+++ /dev/null
@@ -1,2 +0,0 @@
-SPDX-License-Identifier: CC0-1.0
-SPDX-FileCopyrightText: 2020 Alyssa Ross <hi@alyssa.is>
diff --git a/host/rootfs/image/etc/s6-rc/mdevd/run b/host/rootfs/image/etc/s6-rc/mdevd/run
deleted file mode 100644
index 55899bbe674426e4591e866a4d0617361ba34305..0000000000000000000000000000000000000000
--- a/host/rootfs/image/etc/s6-rc/mdevd/run
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/execlineb -P
-# SPDX-License-Identifier: EUPL-1.2+
-# SPDX-FileCopyrightText: 2020-2022 Alyssa Ross <hi@alyssa.is>
-
-mdevd -D3 -O4 -b134217728
diff --git a/host/rootfs/image/etc/s6-rc/mdevd-coldplug/dependencies.d/mdevd b/host/rootfs/image/etc/s6-rc/ok-all/contents.d/systemd-udevd-coldplug
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/mdevd-coldplug/dependencies.d/mdevd
rename to host/rootfs/image/etc/s6-rc/ok-all/contents.d/systemd-udevd-coldplug
diff --git a/host/rootfs/image/etc/s6-rc/ok-all/contents.d/mdevd-coldplug b/host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/dependencies.d/systemd-udevd
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/ok-all/contents.d/mdevd-coldplug
rename to host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/dependencies.d/systemd-udevd
diff --git a/host/rootfs/image/etc/s6-rc/card0/type b/host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/type
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/card0/type
rename to host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/type
diff --git a/host/rootfs/image/etc/s6-rc/mdevd-coldplug/type.license b/host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/type.license
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/mdevd-coldplug/type.license
rename to host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/type.license
diff --git a/host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/up b/host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/up
new file mode 100644
index 0000000000000000000000000000000000000000..655b11a267f586aca471d47e45483bbe65ad608a
--- /dev/null
+++ b/host/rootfs/image/etc/s6-rc/systemd-udevd-coldplug/up
@@ -0,0 +1,3 @@
+# SPDX-License-Identifier: CC0-1.0
+# SPDX-FileCopyrightText: 2025 Demi Marie Obenour <demiobenour@gmail.com>
+udevadm trigger --type=all --action=add --prioritized-subsystem=module,block,tpmrm,net,tty,input
diff --git a/host/rootfs/image/etc/s6-rc/mdevd/notification-fd b/host/rootfs/image/etc/s6-rc/systemd-udevd/notification-fd
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/mdevd/notification-fd
rename to host/rootfs/image/etc/s6-rc/systemd-udevd/notification-fd
diff --git a/host/rootfs/image/etc/s6-rc/systemd-udevd/notification-fd.license b/host/rootfs/image/etc/s6-rc/systemd-udevd/notification-fd.license
new file mode 100644
index 0000000000000000000000000000000000000000..c4a0586a407fe14c3e0855749a7524ac3871dda4
--- /dev/null
+++ b/host/rootfs/image/etc/s6-rc/systemd-udevd/notification-fd.license
@@ -0,0 +1,2 @@
+SPDX-License-Identifier: CC0-1.0
+SPDX-FileCopyrightText: 2025 Demi Marie Obenour <demiobenour@gmail.com>
diff --git a/host/rootfs/image/etc/s6-rc/systemd-udevd/run b/host/rootfs/image/etc/s6-rc/systemd-udevd/run
new file mode 100644
index 0000000000000000000000000000000000000000..a3b74cffe5af191d099ce9314b29669652762092
--- /dev/null
+++ b/host/rootfs/image/etc/s6-rc/systemd-udevd/run
@@ -0,0 +1,14 @@
+#!/bin/execlineb -P
+# SPDX-License-Identifier: EUPL-1.2+
+# SPDX-FileCopyrightText: 2025 Demi Marie Obenour <demiobenour@gmail.com>
+s6-setlock /run/sd-notify-wrapper/systemd-udevd.lock
+# Save stdin to restore it later.
+s6-ipcserver-socketbinder -b0 -m -a 0600 /run/sd-notify-wrapper/systemd-udevd.sock
+background {
+ fdmove 1 3
+ sd-notify-adapter
+}
+fdclose 3
+redirfd -r 0 /dev/null
+export NOTIFY_SOCKET /run/sd-notify-wrapper/systemd-udevd.sock
+systemd-udevd
diff --git a/host/rootfs/image/etc/s6-rc/mdevd/type b/host/rootfs/image/etc/s6-rc/systemd-udevd/type
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/mdevd/type
rename to host/rootfs/image/etc/s6-rc/systemd-udevd/type
diff --git a/host/rootfs/image/etc/s6-rc/mdevd/type.license b/host/rootfs/image/etc/s6-rc/systemd-udevd/type.license
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/mdevd/type.license
rename to host/rootfs/image/etc/s6-rc/systemd-udevd/type.license
diff --git a/host/rootfs/image/etc/s6-rc/vmm-env/contents.d/kvm b/host/rootfs/image/etc/s6-rc/vm-env/contents.d/systemd-udevd-coldplug
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/vmm-env/contents.d/kvm
rename to host/rootfs/image/etc/s6-rc/vm-env/contents.d/systemd-udevd-coldplug
diff --git a/host/rootfs/image/etc/s6-rc/weston/dependencies.d/card0 b/host/rootfs/image/etc/s6-rc/vmm-env/contents.d/systemd-udevd-coldplug
similarity index 100%
rename from host/rootfs/image/etc/s6-rc/weston/dependencies.d/card0
rename to host/rootfs/image/etc/s6-rc/vmm-env/contents.d/systemd-udevd-coldplug
diff --git a/host/rootfs/image/etc/s6-rc/weston/dependencies.d/systemd-udevd-coldplug b/host/rootfs/image/etc/s6-rc/weston/dependencies.d/systemd-udevd-coldplug
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/host/rootfs/image/etc/s6-rc/weston/run b/host/rootfs/image/etc/s6-rc/weston/run
index 7dca0dab095569c9e7d49df9d245533a7265283e..c1bce8505944b68c75c1b87d1ae736ff655e0f07 100644
--- a/host/rootfs/image/etc/s6-rc/weston/run
+++ b/host/rootfs/image/etc/s6-rc/weston/run
@@ -4,10 +4,7 @@
unexport WAYLAND_DISPLAY
-foreground {
- umask 077
- mkdir /run/user/0
-}
+if { mkdir -p -m 0700 /run/user/0 }
unexport ?
backtick USER { id -un }
@@ -20,4 +17,5 @@ redirfd -r 0 /dev/tty1
importas -i home HOME
cd $home
+if { udevadm wait /dev/dri/card0 }
weston
diff --git a/host/rootfs/image/etc/udev/rules.d/99-spectrum.rules b/host/rootfs/image/etc/udev/rules.d/99-spectrum.rules
new file mode 100644
index 0000000000000000000000000000000000000000..6facab361e82fa48e8e018b69b611693b0a277d0
--- /dev/null
+++ b/host/rootfs/image/etc/udev/rules.d/99-spectrum.rules
@@ -0,0 +1,9 @@
+# SPDX-License-Identifier: EUPL-1.2+
+# SPDX-FileCopyrightText: 2025 Demi Marie Obenour <demiobenour@gmail.com>
+
+ACTION=="remove", GOTO="spectrum-end"
+ENV{PCI_CLASS}!="2????", GOTO="spectrum-end"
+
+# systemd-udevd unsets PATH, so fix that.
+RUN+="/usr/bin/env PATH=/usr/bin /usr/libexec/net-add"
+LABEL="spectrum-end"
diff --git a/host/rootfs/image/usr/bin/run-vmm b/host/rootfs/image/usr/bin/run-vmm
index bcb6cdaf6646da6bb4970fe97f5ef03badbd66a6..5649674c51b29b08532fc2cd985a5b20a78c3764 100755
--- a/host/rootfs/image/usr/bin/run-vmm
+++ b/host/rootfs/image/usr/bin/run-vmm
@@ -53,4 +53,5 @@ unexport !
fdmove -c 3 0
redirfd -r 0 /dev/null
+if { udevadm wait /dev/kvm }
cloud-hypervisor --api-socket fd=3
diff --git a/host/rootfs/image/usr/bin/systemd-udevd b/host/rootfs/image/usr/bin/systemd-udevd
new file mode 120000
index 0000000000000000000000000000000000000000..b7887eaf6dd3279116ba61d613bd467598089597
--- /dev/null
+++ b/host/rootfs/image/usr/bin/systemd-udevd
@@ -0,0 +1 @@
+udevadm
\ No newline at end of file
diff --git a/host/rootfs/image/etc/mdev/net/add b/host/rootfs/image/usr/libexec/net-add
similarity index 100%
rename from host/rootfs/image/etc/mdev/net/add
rename to host/rootfs/image/usr/libexec/net-add
--
2.51.2
next prev parent reply other threads:[~2025-11-03 8:30 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-03 8:29 [PATCH v6 0/2] Switch from mdevd to systemd-udevd in root filesystem Demi Marie Obenour
2025-11-03 8:29 ` [PATCH v6 1/2] tools: Add adapter tool for services using sd_notify Demi Marie Obenour
2025-11-03 8:33 ` Demi Marie Obenour
2025-11-06 9:41 ` Alyssa Ross
2025-11-06 9:49 ` Alyssa Ross
2025-11-03 8:29 ` Demi Marie Obenour [this message]
2025-11-06 9:55 ` [PATCH v6 2/2] host/rootfs: Switch to systemd-udevd Alyssa Ross
-- strict thread matches above, loose matches on Subject: below --
2025-11-07 19:00 [PATCH v6 0/2] Switch from mdevd to systemd-udevd in root filesystem Demi Marie Obenour
2025-11-07 19:00 ` [PATCH v6 2/2] host/rootfs: Switch to systemd-udevd Demi Marie Obenour
2025-11-08 19:49 ` Alyssa Ross
2025-11-08 21:28 ` Demi Marie Obenour
2025-11-08 21:37 ` Alyssa Ross
2025-11-08 22:14 ` Alyssa Ross
2025-11-08 22:18 ` Demi Marie Obenour
2025-11-08 22:37 ` Alyssa Ross
2025-11-08 22:37 ` Demi Marie Obenour
2025-11-08 22:52 ` Alyssa Ross
2025-11-08 23:32 ` Demi Marie Obenour
2025-11-09 4:18 ` Demi Marie Obenour
2025-11-09 13:07 ` Alyssa Ross
2025-11-09 2:18 ` Demi Marie Obenour
2025-11-09 13:58 ` Alyssa Ross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251103-udev-v6-2-704649b85d6d@gmail.com \
--to=demiobenour@gmail.com \
--cc=devel@spectrum-os.org \
--cc=hi@alyssa.is \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://spectrum-os.org/git/crosvm
https://spectrum-os.org/git/doc
https://spectrum-os.org/git/mktuntap
https://spectrum-os.org/git/nixpkgs
https://spectrum-os.org/git/spectrum
https://spectrum-os.org/git/ucspi-vsock
https://spectrum-os.org/git/www
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).