From 176c2485b9289a6584664b4c375db02be442c875 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 17 Aug 2026 20:38:30 +0200 Subject: [PATCH] fwupd: use VIRTUAL-RUNTIME_dbus for ptest RDEPENDS Same problem as xdg-dbus-proxy: the hardcoded "dbus" RDEPENDS makes meta-oe-image-ptest-fwupd fail do_rootfs on a distro whose VIRTUAL-RUNTIME_dbus is dbus-broker, since dbus-broker RCONFLICTS with the dbus provided by dbus-1 while systemd requires dbus-broker. Signed-off-by: Khem Raj --- meta-oe/recipes-bsp/fwupd/fwupd_2.1.7.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-bsp/fwupd/fwupd_2.1.7.bb b/meta-oe/recipes-bsp/fwupd/fwupd_2.1.7.bb index c144a52156..bab444be7e 100644 --- a/meta-oe/recipes-bsp/fwupd/fwupd_2.1.7.bb +++ b/meta-oe/recipes-bsp/fwupd/fwupd_2.1.7.bb @@ -81,7 +81,7 @@ FILES:${PN} += "\ FILES:${PN}-ptest += "${libexecdir}/installed-tests/ \ ${datadir}/installed-tests/" -RDEPENDS:${PN}-ptest += "gnome-desktop-testing python3 dbus" +RDEPENDS:${PN}-ptest += "gnome-desktop-testing python3 ${VIRTUAL-RUNTIME_dbus}" # ESP mounting, not strictly necessary RRECOMMENDS:${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'polkit', 'udisks2', '', d)}"