From 8bccce94af56be78a2377483cd4b7c494c48c0bd Mon Sep 17 00:00:00 2001 From: Wenwen Fu Date: Tue, 8 Sep 2026 17:13:38 +0800 Subject: [PATCH] ci/performance: enable root-only udev trigger The initramfs udev framework now supports root-only triggering for all supported initramfs images and falls back to a full trigger when the root device cannot be resolved. Enable the optimization unconditionally in the performance command line instead of limiting it to initramfs-rootfs-image. Signed-off-by: Wenwen Fu --- ci/performance.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/performance.yml b/ci/performance.yml index ec4f7cd19..d6655cc8d 100644 --- a/ci/performance.yml +++ b/ci/performance.yml @@ -3,5 +3,4 @@ header: local_conf_header: cmdline-perf: | - KERNEL_CMDLINE_EXTRA:append = " quiet systemd.tty.term.console=linux" - KERNEL_CMDLINE_EXTRA:append = "${@' initramfs.udev-root-only=1' if d.getVar('INITRAMFS_IMAGE') == 'initramfs-rootfs-image' else ''}" + KERNEL_CMDLINE_EXTRA:append = " quiet systemd.tty.term.console=linux initramfs.udev-root-only=1"