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-kernel/linux/linux_agldemo.inc | 4 ++-- recipes-kernel/most/most.bbappend | 4 ++-- recipes-kernel/sllin/sllin.bb | 14 +++++++------- 3 files changed, 11 insertions(+), 11 deletions(-) (limited to 'recipes-kernel') diff --git a/recipes-kernel/linux/linux_agldemo.inc b/recipes-kernel/linux/linux_agldemo.inc index 84b61df0a..402117748 100644 --- a/recipes-kernel/linux/linux_agldemo.inc +++ b/recipes-kernel/linux/linux_agldemo.inc @@ -1,4 +1,4 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/linux:" +FILESEXTRAPATHS:prepend := "${THISDIR}/linux:" # Enable assorted USB device support for demo systems AGL_KCONFIG_FRAGMENTS += " \ @@ -35,4 +35,4 @@ AGL_KCONFIG_FRAGMENTS += "rtc.cfg" AGL_KCONFIG_FRAGMENTS += "disable_most.cfg" # Enable some things on qemuarm64 so MOST drivers will build and load. -AGL_KCONFIG_FRAGMENTS_append_qemuarm64 = " most_deps.cfg" +AGL_KCONFIG_FRAGMENTS:append:qemuarm64 = " most_deps.cfg" diff --git a/recipes-kernel/most/most.bbappend b/recipes-kernel/most/most.bbappend index 85bae7496..af7ea687e 100644 --- a/recipes-kernel/most/most.bbappend +++ b/recipes-kernel/most/most.bbappend @@ -1,6 +1,6 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/files:" +FILESEXTRAPATHS:prepend := "${THISDIR}/files:" -SRC_URI_append = " \ +SRC_URI:append = " \ file://0002-src-most-add-auto-conf-feature.patch \ file://0003-core-remove-kernel-log-for-MBO-status.patch \ file://0004-most-video-set-device_caps.patch \ diff --git a/recipes-kernel/sllin/sllin.bb b/recipes-kernel/sllin/sllin.bb index 59994d884..cc72b3095 100644 --- a/recipes-kernel/sllin/sllin.bb +++ b/recipes-kernel/sllin/sllin.bb @@ -12,7 +12,7 @@ S = "${WORKDIR}/git/sllin" PV = "0.1+git${SRCPV}" -SRC_URI_append = " \ +SRC_URI:append = " \ file://0001_update_makefile.patch;pnum=2 \ file://0002_fix_null_operation_check.patch;pnum=2 \ file://0003-Allow-recent-kernels-newer-4.11.x-to-build.patch;pnum=2 \ @@ -23,15 +23,15 @@ SRC_URI_append = " \ file://lin_config.conf \ " -KERNEL_MODULE_AUTOLOAD_append = " sllin" -KERNEL_MODULE_PROBECONF_append = " sllin" +KERNEL_MODULE_AUTOLOAD:append = " sllin" +KERNEL_MODULE_PROBECONF:append = " sllin" SLLINBAUDRATE ??= "9600" module_conf_sllin = "options sllin baudrate=${SLLINBAUDRATE}" -SYSTEMD_SERVICE_${PN} = "sllin-demo.service" +SYSTEMD_SERVICE:${PN} = "sllin-demo.service" -do_install_append () { +do_install:append () { install -d 644 ${D}/${bindir} install -m 755 ${WORKDIR}/start_lin_demo.sh ${D}/${bindir}/start_lin_demo.sh install -d ${D}${systemd_system_unitdir} @@ -40,6 +40,6 @@ do_install_append () { install -m 0644 ${WORKDIR}/lin_config.conf ${D}${sysconfdir}/ } -FILES_${PN} += "${bindir}/start_lin_demo.sh ${sysconfdir}/lin_config.conf" +FILES:${PN} += "${bindir}/start_lin_demo.sh ${sysconfdir}/lin_config.conf" -RDEPENDS_${PN} += "lin-config" +RDEPENDS:${PN} += "lin-config" -- cgit 1.2.3-korg