From: Khem Raj Date: Wed, 17 Jul 2024 19:06:44 +0000 (-0700) Subject: systemd: Replace deprecate udevadm command X-Git-Tag: yocto-5.2~2355 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16f3eba7f5097976a53e3ffabd3723d889df56e6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git systemd: Replace deprecate udevadm command In postinstall we run this script on target these days systemd-hwdb is recommended Fixes ... Configuring udev-hwdb. udevadm hwdb is deprecated. Use systemd-hwdb instead. Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/systemd/systemd_256.bb b/meta/recipes-core/systemd/systemd_256.bb index 2e1f82dc8d1..a197b165832 100644 --- a/meta/recipes-core/systemd/systemd_256.bb +++ b/meta/recipes-core/systemd/systemd_256.bb @@ -904,7 +904,7 @@ pkg_postinst:udev-hwdb () { if test -n "$D"; then $INTERCEPT_DIR/postinst_intercept update_udev_hwdb ${PKG} mlprefix=${MLPREFIX} binprefix=${MLPREFIX} rootlibexecdir="${rootlibexecdir}" PREFERRED_PROVIDER_udev="${PREFERRED_PROVIDER_udev}" base_bindir="${base_bindir}" else - udevadm hwdb --update + systemd-hwdb update fi }