Skip to content

Commit

Permalink
layer: Convert to new override syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
kraj committed Aug 12, 2021
1 parent 72f59d3 commit 59d36c9
Show file tree
Hide file tree
Showing 207 changed files with 1,106 additions and 1,106 deletions.
4 changes: 2 additions & 2 deletions classes/fsl-eula-unpack.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ FSL_EULA_FILE_MD5SUM ?= \

LIC_FILES_CHKSUM_LAYER ?= "file://${FSL_EULA_FILE};md5=${FSL_EULA_FILE_MD5SUM}"
LIC_FILES_CHKSUM_LAYER[vardepsexclude] += "FSL_EULA_FILE"
LIC_FILES_CHKSUM_append = " ${LIC_FILES_CHKSUM_LAYER}"
LIC_FILES_CHKSUM:append = " ${LIC_FILES_CHKSUM_LAYER}"

LIC_FILES_CHKSUM[vardepsexclude] += "FSL_EULA_FILE"

do_fetch_prepend() {
do_fetch:prepend() {
if "Proprietary" not in d.getVar("LICENSE"):
bb.fatal("The recipe LICENSE should include Proprietary but is " + d.getVar("LICENSE") + ".")
}
Expand Down
2 changes: 1 addition & 1 deletion classes/fsl-u-boot-localversion.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ LOCALVERSION ??= "+fslc"

UBOOT_LOCALVERSION = "${LOCALVERSION}"

do_compile_prepend() {
do_compile:prepend() {
if [ "${SCMVERSION}" = "y" ]; then
# Add GIT revision to the local version
head=`cd ${S} ; git rev-parse --verify --short HEAD 2> /dev/null`
Expand Down
8 changes: 4 additions & 4 deletions classes/fsl-vivante-kernel-driver-handler.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ python fsl_vivante_kernel_driver_handler () {
return

if use_vivante_kernel_driver_module != "1":
e.data.appendVar('RPROVIDES_${KERNEL_PACKAGE_NAME}-base', ' kernel-module-imx-gpu-viv')
e.data.appendVar('RREPLACES_${KERNEL_PACKAGE_NAME}-base', ' kernel-module-imx-gpu-viv')
e.data.appendVar('RCONFLICTS_${KERNEL_PACKAGE_NAME}-base', ' kernel-module-imx-gpu-viv')
e.data.appendVar('RPROVIDES:${KERNEL_PACKAGE_NAME}-base', ' kernel-module-imx-gpu-viv')
e.data.appendVar('RREPLACES:${KERNEL_PACKAGE_NAME}-base', ' kernel-module-imx-gpu-viv')
e.data.appendVar('RCONFLICTS:${KERNEL_PACKAGE_NAME}-base', ' kernel-module-imx-gpu-viv')
}

addhandler fsl_vivante_kernel_driver_handler
fsl_vivante_kernel_driver_handler[eventmask] = "bb.event.RecipePreFinalise"

do_configure_append () {
do_configure:append () {
if [ "${MACHINE_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT}" = "1" ]; then
config="${B}/.config"

Expand Down
12 changes: 6 additions & 6 deletions classes/image_types_fsl.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ UBOOT_SUFFIX ?= "bin"
MXSBOOT_NAND_ARGS ?= ""

# U-Boot mxsboot generation for uSD
do_image_uboot_mxsboot_sdcard[depends] += "u-boot-mxsboot-native:do_populate_sysroot \
do_image_uboot:mxsboot_sdcard[depends] += "u-boot-mxsboot-native:do_populate_sysroot \
u-boot:do_deploy"
IMAGE_CMD_uboot-mxsboot-sdcard() {
IMAGE_CMD:uboot-mxsboot-sdcard() {
mxsboot sd ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.${UBOOT_SUFFIX} \
${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.uboot-mxsboot-sdcard
ln -sf ${IMAGE_NAME}.rootfs.uboot-mxsboot-sdcard \
${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.rootfs.uboot-mxsboot-sdcard
}

# U-Boot mxsboot generation for NAND
do_image_uboot_mxsboot_nand[depends] += "u-boot-mxsboot-native:do_populate_sysroot \
do_image_uboot:mxsboot_nand[depends] += "u-boot-mxsboot-native:do_populate_sysroot \
u-boot:do_deploy"
IMAGE_CMD_uboot-mxsboot-nand() {
IMAGE_CMD:uboot-mxsboot-nand() {
mxsboot ${MXSBOOT_NAND_ARGS} nand \
${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.${UBOOT_SUFFIX} \
${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.uboot-mxsboot-nand
Expand All @@ -33,11 +33,11 @@ IMAGE_CMD_uboot-mxsboot-nand() {
# image stream built before the wic generation
do_image_wic[depends] += " \
${@bb.utils.contains('IMAGE_FSTYPES', 'uboot-mxsboot-sdcard', \
'${IMAGE_BASENAME}:do_image_uboot_mxsboot_sdcard', '', d)} \
'${IMAGE_BASENAME}:do_image_uboot:mxsboot_sdcard', '', d)} \
"

# We need to apply a fixup inside of the partition table
IMAGE_CMD_wic_append_mxs() {
IMAGE_CMD:wic:append:mxs() {
# Change partition type for mxs processor family
bbnote "Setting partition type to 0x53 as required for mxs' SoC family."
echo -n S | dd of=$out${IMAGE_NAME_SUFFIX}.wic bs=1 count=1 seek=450 conv=notrunc
Expand Down
4 changes: 2 additions & 2 deletions classes/imx-boot-container.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# Define ATF binary file to be deployed to the U-Boot build folder
ATF_MACHINE_NAME = "bl31-${ATF_PLATFORM}.bin"
ATF_MACHINE_NAME_append = "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '-optee', '', d)}"
ATF_MACHINE_NAME:append = "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '-optee', '', d)}"

# This package aggregates output deployed by other packages, so set the
# appropriate dependencies for populate binaries task
Expand Down Expand Up @@ -76,7 +76,7 @@ addtask do_resolve_and_populate_binaries before do_compile after do_configure
# This effectively would allow the usage of the same WKS file for those
# derivatives that are using the boot container from U-Boot and those
# that are not yet have support for it enabled.
do_deploy_append() {
do_deploy:append() {
# Deploy the resulted flash.bin for WIC to pick it up
if [ -n "${UBOOT_CONFIG}" ]; then
for config in ${UBOOT_MACHINE}; do
Expand Down
4 changes: 2 additions & 2 deletions classes/kernel-imximage.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
# Copyright 2017 (C) O.S. Systems Software LTDA.

DEPENDS_append = ' u-boot-mkimage-native'
DEPENDS:append = ' u-boot-mkimage-native'

IMXIMAGE_ENTRYPOINT ?= "${UBOOT_ENTRYPOINT}"

Expand Down Expand Up @@ -55,6 +55,6 @@ gen_imximage() {
done
}

do_deploy_append() {
do_deploy:append() {
gen_imximage
}
2 changes: 1 addition & 1 deletion classes/kernel-itbimage.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ addtask assemble_fitimage_initramfs before do_deploy after do_install


kernel_do_deploy[vardepsexclude] = "DATETIME"
kernel_do_deploy_append() {
kernel_do_deploy:append() {
# Update deploy directory
if echo ${KERNEL_IMAGETYPES} | grep -wq "itbImage"; then
cd ${B}
Expand Down
2 changes: 1 addition & 1 deletion classes/mfgtool-initramfs-image.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FEATURE_PACKAGES_extfs = "packagegroup-fsl-mfgtool-extfs"
FEATURE_PACKAGES_f2fs = "packagegroup-fsl-mfgtool-f2fs"

IMAGE_FSTYPES = "cpio.gz.u-boot"
IMAGE_FSTYPES_mxs = "cpio.gz.u-boot"
IMAGE_FSTYPES:mxs = "cpio.gz.u-boot"
IMAGE_ROOTFS_SIZE ?= "8192"

# Filesystems enabled by default
Expand Down
6 changes: 3 additions & 3 deletions classes/qoriq_build_64bit_kernel.bbclass
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
inherit features_check
REQUIRED_DISTRO_FEATURES_e6500 += "multiarch"
REQUIRED_DISTRO_FEATURES:e6500 += "multiarch"

python () {
promote_kernel = d.getVar('BUILD_64BIT_KERNEL', False)
if promote_kernel == "1":
sys_multilib = 'powerpc64' + d.getVar('TARGET_VENDOR', False) + 'mllib64-' + d.getVar('HOST_OS', False)
tc_options = d.getVar('TOOLCHAIN_OPTIONS', False) + '/../lib64-' + d.getVar("MACHINE", False)
d.setVar('DEPENDS_append', ' lib64-gcc-cross-powerpc64 lib64-libgcc')
d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE', False) + '/' + sys_multilib)
d.setVar('DEPENDS:append', ' lib64-gcc-cross-powerpc64 lib64-libgcc')
d.setVar('PATH:append', ':' + d.getVar('STAGING_BINDIR_NATIVE', False) + '/' + sys_multilib)
d.setVar('KERNEL_CC', d.getVar('CCACHE', False) + sys_multilib + '-' + 'gcc' + d.getVar('HOST_CC_KERNEL_ARCH', False) + tc_options)
d.setVar('KERNEL_LD', d.getVar('CCACHE', False) + sys_multilib + '-' + 'ld.bfd' + d.getVar('HOST_LD_KERNEL_ARCH', False) + tc_options)
d.setVar('KERNEL_AR', d.getVar('CCACHE', False) + sys_multilib + '-' + 'ar' + d.getVar('HOST_AR_KERNEL_ARCH', False))
Expand Down
6 changes: 3 additions & 3 deletions classes/use-imx-headers.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
#
# Copyright 2018 (C) O.S. Systems Software LTDA.

DEPENDS_append_imx = " linux-imx-headers"
DEPENDS:append_imx = " linux-imx-headers"

# Set runtime dependency of -dev for package inheriting this class to
# linux-imx-headers-dev package. This is required in order to propagate
# headers into the SDK
RDEPENDS_${PN}-dev += "linux-imx-headers-dev"
RDEPENDS:${PN}-dev += "linux-imx-headers-dev"

PACKAGE_ARCH_imx ?= "${MACHINE_SOCARCH}"

Expand All @@ -34,4 +34,4 @@ STAGING_INCDIR_IMX = "${STAGING_INCDIR}/imx"
# Typical example here would be imx-vpu-hantro recipe, which requires NXP
# BSP and is not compatible with mainline.
COMPATIBLE_HOST = '(null)'
COMPATIBLE_HOST_use-nxp-bsp = '.*'
COMPATIBLE_HOST:use-nxp-bsp = '.*'
6 changes: 3 additions & 3 deletions classes/use-imx-security-controller-firmware.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@

SECO_FIRMWARE_NAME ?= ""

SECO_FIRMWARE_NAME_mx8qm = "mx8qmb0-ahab-container.img"
SECO_FIRMWARE_NAME_mx8qxp = \
SECO_FIRMWARE_NAME:mx8qm = "mx8qmb0-ahab-container.img"
SECO_FIRMWARE_NAME:mx8qxp = \
"${@bb.utils.contains('MACHINE_FEATURES', 'soc-revb0', 'mx8qxb0-ahab-container.img', \
'mx8qxc0-ahab-container.img', d)}"
SECO_FIRMWARE_NAME_mx8dxl = "mx8dxla1-ahab-container.img"
SECO_FIRMWARE_NAME:mx8dxl = "mx8dxla1-ahab-container.img"

python () {
if "mx8m" in d.getVar('MACHINEOVERRIDES').split(":"):
Expand Down
18 changes: 9 additions & 9 deletions conf/machine/imx6qdlsabreauto.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ KERNEL_DEVICETREE = " \
imx6dl-sabreauto.dtb imx6dl-sabreauto-gpmi-weim.dtb imx6dl-sabreauto-ecspi.dtb \
imx6dl-sabreauto-flexcan1.dtb imx6dl-sabreauto-enetirq.dtb \
"
KERNEL_DEVICETREE_use-mainline-bsp = " \
KERNEL_DEVICETREE:use-mainline-bsp = " \
imx6qp-sabreauto.dtb \
imx6q-sabreauto.dtb \
imx6dl-sabreauto.dtb \
"

### u-boot-fslc settings ###

SPL_BINARY_pn-u-boot-fslc = "SPL"
UBOOT_MACHINE_pn-u-boot-fslc ?= "mx6sabreauto_defconfig"
UBOOT_SUFFIX_pn-u-boot-fslc = "img"
SPL_BINARY:pn-u-boot-fslc = "SPL"
UBOOT_MACHINE:pn-u-boot-fslc ?= "mx6sabreauto_defconfig"
UBOOT_SUFFIX:pn-u-boot-fslc = "img"

### u-boot-imx settings ###

# The u-boot-imx does not provide unified functionality for DL/Q/QP SoC
# variants. Change the defconfig to the targeted SoC variant.
SPL_BINARY_pn-u-boot-imx = ""
UBOOT_MACHINE_pn-u-boot-imx = "mx6qsabreauto_defconfig"
UBOOT_MAKE_TARGET_pn-u-boot-imx = "u-boot.imx"
UBOOT_SUFFIX_pn-u-boot-imx = "imx"
SPL_BINARY:pn-u-boot-imx = ""
UBOOT_MACHINE:pn-u-boot-imx = "mx6qsabreauto_defconfig"
UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx"
UBOOT_SUFFIX:pn-u-boot-imx = "imx"

WKS_FILE = " \
${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \
Expand All @@ -54,6 +54,6 @@ WKS_FILE = " \

SERIAL_CONSOLES = "115200;ttymxc3"

MACHINE_FIRMWARE_append_mx6 = " linux-firmware-ath6k"
MACHINE_FIRMWARE:append:mx6 = " linux-firmware-ath6k"

MACHINE_FEATURES += " pci wifi bluetooth"
18 changes: 9 additions & 9 deletions conf/machine/imx6qdlsabresd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,26 @@ KERNEL_DEVICETREE = " \
imx6dl-sabresd-hdcp.dtb \
imx6dl-sabresd-ldo.dtb \
"
KERNEL_DEVICETREE_use-mainline-bsp = " \
KERNEL_DEVICETREE:use-mainline-bsp = " \
imx6qp-sabresd.dtb \
imx6q-sabresd.dtb \
imx6dl-sabresd.dtb \
"

### u-boot-fslc settings ###

SPL_BINARY_pn-u-boot-fslc = "SPL"
UBOOT_MACHINE_pn-u-boot-fslc ?= "mx6sabresd_defconfig"
UBOOT_SUFFIX_pn-u-boot-fslc = "img"
SPL_BINARY:pn-u-boot-fslc = "SPL"
UBOOT_MACHINE:pn-u-boot-fslc ?= "mx6sabresd_defconfig"
UBOOT_SUFFIX:pn-u-boot-fslc = "img"

### u-boot-imx settings ###

# The u-boot-imx does not provide unified functionality for DL/Q/QP SoC
# variants. Change the defconfig to the targeted SoC variant.
SPL_BINARY_pn-u-boot-imx = ""
UBOOT_MACHINE_pn-u-boot-imx ?= "mx6qsabresd_defconfig"
UBOOT_MAKE_TARGET_pn-u-boot-imx = "u-boot.imx"
UBOOT_SUFFIX_pn-u-boot-imx = "imx"
SPL_BINARY:pn-u-boot-imx = ""
UBOOT_MACHINE:pn-u-boot-imx ?= "mx6qsabresd_defconfig"
UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx"
UBOOT_SUFFIX:pn-u-boot-imx = "imx"

WKS_FILE = " \
${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \
Expand All @@ -63,6 +63,6 @@ WKS_FILE = " \

SERIAL_CONSOLES = "115200;ttymxc0"

MACHINE_FIRMWARE_append_mx6 = " linux-firmware-ath6k"
MACHINE_FIRMWARE:append:mx6 = " linux-firmware-ath6k"

MACHINE_FEATURES += " pci wifi bluetooth"
2 changes: 1 addition & 1 deletion conf/machine/imx6slevk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include conf/machine/include/imx-base.inc
include conf/machine/include/tune-cortexa9.inc

KERNEL_DEVICETREE = "imx6sl-evk.dtb"
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
imx6sl-evk-btwifi.dtb \
imx6sl-evk-csi.dtb \
imx6sl-evk-ldo.dtb \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/imx6sllevk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ UBOOT_CONFIG[sd-optee] = "mx6sllevk_optee_config,sdcard"
UBOOT_CONFIG[epdc] = "mx6sllevk_epdc_config"
UBOOT_CONFIG[mfgtool] = "mx6sllevk_config"

OPTEE_BIN_EXT_imx6sllevk = "6sllevk"
OPTEE_BIN_EXT:imx6sllevk = "6sllevk"

SERIAL_CONSOLES = "115200;ttymxc0"

Expand Down
4 changes: 2 additions & 2 deletions conf/machine/imx6sxsabreauto.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require conf/machine/include/imx-base.inc
require conf/machine/include/tune-cortexa9.inc

KERNEL_DEVICETREE = "imx6sx-sabreauto.dtb"
KERNEL_DEVICETREE_use-mainline-bsp = "imx6sx-sabreauto.dtb"
KERNEL_DEVICETREE:use-mainline-bsp = "imx6sx-sabreauto.dtb"

UBOOT_MAKE_TARGET = "u-boot.imx"
UBOOT_SUFFIX = "imx"
Expand All @@ -29,6 +29,6 @@ OPTEE_BIN_EXT = "6sxauto"

SERIAL_CONSOLES = "115200;ttymxc3"

MACHINE_FIRMWARE_append_mx6 = " linux-firmware-ath6k"
MACHINE_FIRMWARE:append:mx6 = " linux-firmware-ath6k"

MACHINE_FEATURES += " pci wifi bluetooth"
4 changes: 2 additions & 2 deletions conf/machine/imx6sxsabresd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ KERNEL_DEVICETREE = " \
imx6sx-sdb-reva.dtb \
imx6sx-sdb-sai.dtb \
"
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
imx6sx-sdb-btwifi.dtb \
imx6sx-sdb-emmc.dtb \
imx6sx-sdb-lcdif1.dtb \
Expand Down Expand Up @@ -43,6 +43,6 @@ OPTEE_BIN_EXT = "6sxsdb"

SERIAL_CONSOLES = "115200;ttymxc0"

MACHINE_FIRMWARE_append_mx6 = " linux-firmware-ath6k"
MACHINE_FIRMWARE:append:mx6 = " linux-firmware-ath6k"

MACHINE_FEATURES += "pci wifi bluetooth bcm4339 bcm43455"
12 changes: 6 additions & 6 deletions conf/machine/imx6ulevk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ KERNEL_DEVICETREE = " \
imx6ul-14x14-evk-emmc.dtb \
imx6ul-14x14-evk-gpmi-weim.dtb \
"
KERNEL_DEVICETREE_use-mainline-bsp = "imx6ul-14x14-evk.dtb"
KERNEL_DEVICETREE:use-mainline-bsp = "imx6ul-14x14-evk.dtb"

### u-boot-fslc settings ###

SPL_BINARY_pn-u-boot-fslc = "SPL"
UBOOT_SUFFIX_pn-u-boot-fslc = "img"
SPL_BINARY:pn-u-boot-fslc = "SPL"
UBOOT_SUFFIX:pn-u-boot-fslc = "img"

### u-boot-imx settings ###

# The u-boot-imx does not provide SPL support
SPL_BINARY_pn-u-boot-imx = ""
UBOOT_MAKE_TARGET_pn-u-boot-imx = "u-boot.imx"
UBOOT_SUFFIX_pn-u-boot-imx = "imx"
SPL_BINARY:pn-u-boot-imx = ""
UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx"
UBOOT_SUFFIX:pn-u-boot-imx = "imx"

WKS_FILE = " \
${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/imx6ullevk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ KERNEL_DEVICETREE = " \
imx6ull-14x14-evk.dtb \
"

KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
imx6ull-14x14-evk-btwifi.dtb \
imx6ull-14x14-evk-btwifi-oob.dtb \
imx6ull-14x14-evk-emmc.dtb \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/imx6ulz-14x14-evk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ MACHINE_FEATURES += "wifi bluetooth bcm4339 bcm43455"
KERNEL_DEVICETREE = " \
imx6ulz-14x14-evk.dtb \
"
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
imx6ulz-14x14-evk-btwifi.dtb \
imx6ulz-14x14-evk-emmc.dtb \
imx6ulz-14x14-evk-gpmi-weim.dtb \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/imx7dsabresd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require conf/machine/include/tune-cortexa7.inc
MACHINE_FEATURES += "pci wifi bluetooth bcm4339 bcm43455"

KERNEL_DEVICETREE = "imx7d-sdb.dtb"
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
imx7d-sdb-epdc.dtb \
imx7d-sdb-gpmi-weim.dtb \
imx7d-sdb-m4.dtb \
Expand Down
4 changes: 2 additions & 2 deletions conf/machine/imx7ulpevk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ MACHINE_FEATURES += "pci wifi bluetooth bcm43430"
KERNEL_DEVICETREE = " \
imx7ulp-evk.dtb \
"
KERNEL_DEVICETREE_append_use-mainline-bsp = " \
KERNEL_DEVICETREE:append:use-mainline-bsp = " \
imx7ulp-com.dtb \
"
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
imx7ulp-evk-ft5416.dtb \
imx7ulp-evk-mipi.dtb \
imx7ulp-evkb.dtb \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/imx8dxl-lpddr4-evk.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

require conf/machine/include/imx8dxl-evk.inc
KERNEL_DEVICETREE_BASENAME = "imx8dxl-evk"
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
freescale/${KERNEL_DEVICETREE_BASENAME}-enet0.dtb \
freescale/${KERNEL_DEVICETREE_BASENAME}-enet0-tja1100.dtb \
freescale/${KERNEL_DEVICETREE_BASENAME}-inmate.dtb \
Expand Down
Loading

0 comments on commit 59d36c9

Please sign in to comment.