From 4249268041b879b3d2bae338d5de88f4f2d54b26 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Fri, 20 Aug 2021 13:58:45 -0400 Subject: Convert to new override syntax This is the result of running a slightly customized version of the convert-overrides.py script from poky with additional overrides added. The intent of these changes is to minimize the effort to keep the "next" branch that builds against poky master up to date and tested in preparation for the switch to the next Yocto LTS release in early 2022. Bug-AGL: SPEC-4052 Signed-off-by: Scott Murray Change-Id: I6eeadd2c985c008b04f8f9815bf0f6fb064bedac --- recipes-core/udev/demo-i2c-udev-conf_1.0.bb | 4 ++-- recipes-core/udev/sw-gpsd-udev-conf_1.0.bb | 2 +- recipes-core/udev/usb-can-udev-conf_1.0.bb | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'recipes-core/udev') diff --git a/recipes-core/udev/demo-i2c-udev-conf_1.0.bb b/recipes-core/udev/demo-i2c-udev-conf_1.0.bb index 04101cf3..332c698b 100644 --- a/recipes-core/udev/demo-i2c-udev-conf_1.0.bb +++ b/recipes-core/udev/demo-i2c-udev-conf_1.0.bb @@ -30,6 +30,6 @@ do_install() { fi } -FILES_${PN} += "${systemd_unitdir}" +FILES:${PN} += "${systemd_unitdir}" -RDEPENDS_${PN} += "bash" +RDEPENDS:${PN} += "bash" diff --git a/recipes-core/udev/sw-gpsd-udev-conf_1.0.bb b/recipes-core/udev/sw-gpsd-udev-conf_1.0.bb index 9b6fd57d..0dfd0521 100644 --- a/recipes-core/udev/sw-gpsd-udev-conf_1.0.bb +++ b/recipes-core/udev/sw-gpsd-udev-conf_1.0.bb @@ -13,4 +13,4 @@ do_install() { fi } -RDEPENDS_${PN} += "systemd" +RDEPENDS:${PN} += "systemd" diff --git a/recipes-core/udev/usb-can-udev-conf_1.0.bb b/recipes-core/udev/usb-can-udev-conf_1.0.bb index fb5deec3..9c6035e9 100644 --- a/recipes-core/udev/usb-can-udev-conf_1.0.bb +++ b/recipes-core/udev/usb-can-udev-conf_1.0.bb @@ -20,6 +20,6 @@ do_install() { fi } -FILES_${PN} += "${systemd_system_unitdir}" +FILES:${PN} += "${systemd_system_unitdir}" -RDEPENDS_${PN} += "systemd" +RDEPENDS:${PN} += "systemd" -- cgit 1.2.3-korg