mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-04 21:05:24 +02:00
layer: Convert to new override syntax
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
8a977f5b61
commit
4ac3c7265a
|
@ -6,7 +6,7 @@ do_image_boot_ubifs[depends] += " \
|
||||||
virtual/kernel:do_deploy \
|
virtual/kernel:do_deploy \
|
||||||
"
|
"
|
||||||
|
|
||||||
IMAGE_CMD_boot.ubifs() {
|
IMAGE_CMD:boot.ubifs() {
|
||||||
BOOTIMG_FILES_SYMLINK="${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}.bin"
|
BOOTIMG_FILES_SYMLINK="${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}.bin"
|
||||||
if [ -n "${KERNEL_DEVICETREE}" ]; then
|
if [ -n "${KERNEL_DEVICETREE}" ]; then
|
||||||
for DTB in ${KERNEL_DEVICETREE}; do
|
for DTB in ${KERNEL_DEVICETREE}; do
|
||||||
|
|
|
@ -14,7 +14,7 @@ KERNEL_DEVICETREE += "imx6q-apalis-eval.dtb imx6q-apalis-ixora.dtb \
|
||||||
imx6q-apalis-ixora-v1.1.dtb"
|
imx6q-apalis-ixora-v1.1.dtb"
|
||||||
KERNEL_IMAGETYPE = "zImage"
|
KERNEL_IMAGETYPE = "zImage"
|
||||||
# The kernel lives in a seperate FAT partition, don't deploy it in /boot/
|
# The kernel lives in a seperate FAT partition, don't deploy it in /boot/
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
IMX_DEFAULT_BOOTLOADER = "u-boot-toradex"
|
IMX_DEFAULT_BOOTLOADER = "u-boot-toradex"
|
||||||
PREFERRED_RPROVIDER_u-boot-default-script = "u-boot-script-toradex"
|
PREFERRED_RPROVIDER_u-boot-default-script = "u-boot-script-toradex"
|
||||||
|
@ -25,12 +25,12 @@ SPL_BINARY = "SPL"
|
||||||
UBOOT_CONFIG ??= "spl"
|
UBOOT_CONFIG ??= "spl"
|
||||||
UBOOT_CONFIG[spl] = "apalis_imx6_defconfig,,u-boot.img"
|
UBOOT_CONFIG[spl] = "apalis_imx6_defconfig,,u-boot.img"
|
||||||
UBOOT_MAKE_TARGET = ""
|
UBOOT_MAKE_TARGET = ""
|
||||||
UBOOT_ENTRYPOINT_use-mainline-bsp = "0x10008000"
|
UBOOT_ENTRYPOINT:use-mainline-bsp = "0x10008000"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "tar.xz"
|
IMAGE_FSTYPES += "tar.xz"
|
||||||
# wic support
|
# wic support
|
||||||
IMAGE_BOOT_FILES_append = " boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES:append = " boot.scr-${MACHINE};boot.scr"
|
||||||
WKS_FILE_DEPENDS_append = " u-boot-default-script"
|
WKS_FILE_DEPENDS:append = " u-boot-default-script"
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
|
|
||||||
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g pci"
|
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g pci"
|
||||||
|
|
|
@ -12,10 +12,10 @@ include conf/machine/include/tune-cortexa9.inc
|
||||||
PREFERRED_PROVIDER_virtual/kernel_use-nxp-bsp ??= "linux-toradex"
|
PREFERRED_PROVIDER_virtual/kernel_use-nxp-bsp ??= "linux-toradex"
|
||||||
KERNEL_DEVICETREE += "imx6dl-colibri-eval-v3.dtb imx6dl-colibri-cam-eval-v3.dtb \
|
KERNEL_DEVICETREE += "imx6dl-colibri-eval-v3.dtb imx6dl-colibri-cam-eval-v3.dtb \
|
||||||
imx6dl-colibri-aster.dtb"
|
imx6dl-colibri-aster.dtb"
|
||||||
KERNEL_DEVICETREE_use-mainline-bsp = "imx6dl-colibri-eval-v3.dtb"
|
KERNEL_DEVICETREE:use-mainline-bsp = "imx6dl-colibri-eval-v3.dtb"
|
||||||
KERNEL_IMAGETYPE = "zImage"
|
KERNEL_IMAGETYPE = "zImage"
|
||||||
# The kernel lives in a seperate FAT partition, don't deploy it in /boot/
|
# The kernel lives in a seperate FAT partition, don't deploy it in /boot/
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
IMX_DEFAULT_BOOTLOADER = "u-boot-toradex"
|
IMX_DEFAULT_BOOTLOADER = "u-boot-toradex"
|
||||||
PREFERRED_PROVIDER_u-boot-default-script = "u-boot-script-toradex"
|
PREFERRED_PROVIDER_u-boot-default-script = "u-boot-script-toradex"
|
||||||
|
@ -25,12 +25,12 @@ SPL_BINARY = "SPL"
|
||||||
UBOOT_CONFIG ??= "spl"
|
UBOOT_CONFIG ??= "spl"
|
||||||
UBOOT_CONFIG[spl] = "colibri_imx6_defconfig,,u-boot.img"
|
UBOOT_CONFIG[spl] = "colibri_imx6_defconfig,,u-boot.img"
|
||||||
UBOOT_MAKE_TARGET = ""
|
UBOOT_MAKE_TARGET = ""
|
||||||
UBOOT_ENTRYPOINT_use-mainline-bsp = "0x10008000"
|
UBOOT_ENTRYPOINT:use-mainline-bsp = "0x10008000"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "tar.xz"
|
IMAGE_FSTYPES += "tar.xz"
|
||||||
# wic support
|
# wic support
|
||||||
IMAGE_BOOT_FILES_append = " boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES:append = " boot.scr-${MACHINE};boot.scr"
|
||||||
WKS_FILE_DEPENDS_append = " u-boot-default-script"
|
WKS_FILE_DEPENDS:append = " u-boot-default-script"
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
|
|
||||||
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g"
|
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g"
|
||||||
|
|
|
@ -13,7 +13,7 @@ PREFERRED_PROVIDER_virtual/kernel_use-nxp-bsp ?= "linux-toradex"
|
||||||
KERNEL_DEVICETREE += "imx6ull-colibri-eval-v3.dtb imx6ull-colibri-wifi-eval-v3.dtb"
|
KERNEL_DEVICETREE += "imx6ull-colibri-eval-v3.dtb imx6ull-colibri-wifi-eval-v3.dtb"
|
||||||
KERNEL_IMAGETYPE = "zImage"
|
KERNEL_IMAGETYPE = "zImage"
|
||||||
# The kernel lives in its own ubi volume.
|
# The kernel lives in its own ubi volume.
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
|
PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
|
||||||
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
|
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
|
||||||
|
@ -27,9 +27,9 @@ UBOOT_MACHINE ?= "colibri-imx6ull_defconfig"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "tar.xz"
|
IMAGE_FSTYPES += "tar.xz"
|
||||||
# wic support
|
# wic support
|
||||||
IMAGE_BOOT_FILES_append = " boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES:append = " boot.scr-${MACHINE};boot.scr"
|
||||||
WKS_FILE_DEPENDS_append = " u-boot-default-script"
|
WKS_FILE_DEPENDS:append = " u-boot-default-script"
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
|
|
||||||
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g"
|
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g"
|
||||||
MACHINE_FIRMWARE_remove = "firmware-imx-epdc"
|
MACHINE_FIRMWARE:remove = "firmware-imx-epdc"
|
||||||
|
|
|
@ -12,10 +12,10 @@ include conf/machine/include/tune-cortexa7.inc
|
||||||
PREFERRED_PROVIDER_virtual/kernel_use-nxp-bsp ??= "linux-toradex"
|
PREFERRED_PROVIDER_virtual/kernel_use-nxp-bsp ??= "linux-toradex"
|
||||||
|
|
||||||
KERNEL_DEVICETREE = "imx7d-colibri-emmc-eval-v3.dtb"
|
KERNEL_DEVICETREE = "imx7d-colibri-emmc-eval-v3.dtb"
|
||||||
KERNEL_DEVICETREE_append_use-nxp-bsp = " imx7d-colibri-emmc-aster.dtb"
|
KERNEL_DEVICETREE:append:use-nxp-bsp = " imx7d-colibri-emmc-aster.dtb"
|
||||||
|
|
||||||
# The kernel lives in a seperate FAT partition, don't deploy it in /boot/
|
# The kernel lives in a seperate FAT partition, don't deploy it in /boot/
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
IMX_DEFAULT_BOOTLOADER = "u-boot-toradex"
|
IMX_DEFAULT_BOOTLOADER = "u-boot-toradex"
|
||||||
PREFERRED_RPROVIDER_u-boot-default-script = "u-boot-script-toradex"
|
PREFERRED_RPROVIDER_u-boot-default-script = "u-boot-script-toradex"
|
||||||
|
@ -25,7 +25,7 @@ UBOOT_BINARY = "u-boot-dtb.${UBOOT_SUFFIX}"
|
||||||
UBOOT_MACHINE ?= "colibri_imx7_emmc_defconfig"
|
UBOOT_MACHINE ?= "colibri_imx7_emmc_defconfig"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "tar.xz"
|
IMAGE_FSTYPES += "tar.xz"
|
||||||
IMAGE_BOOT_FILES_append = " boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES:append = " boot.scr-${MACHINE};boot.scr"
|
||||||
WKS_FILE_DEPENDS_append = " u-boot-default-script"
|
WKS_FILE_DEPENDS:append = " u-boot-default-script"
|
||||||
|
|
||||||
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g"
|
MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g"
|
||||||
|
|
|
@ -18,14 +18,14 @@ KERNEL_DEVICETREE = " \
|
||||||
imx7s-colibri-eval-v3.dtb \
|
imx7s-colibri-eval-v3.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
|
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
|
||||||
imx7d-colibri-aster.dtb \
|
imx7d-colibri-aster.dtb \
|
||||||
imx7s-colibri-aster.dtb \
|
imx7s-colibri-aster.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
# U-Boot of our newer release read the Kernel and device tree from static UBI
|
# U-Boot of our newer release read the Kernel and device tree from static UBI
|
||||||
# volumes, hence no need to deploy the kernel binary in the image itself
|
# volumes, hence no need to deploy the kernel binary in the image itself
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
|
PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
|
||||||
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
|
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
|
||||||
|
@ -40,8 +40,8 @@ UBOOT_MACHINE ?= "colibri_imx7_defconfig"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "tar.xz"
|
IMAGE_FSTYPES += "tar.xz"
|
||||||
# wic support
|
# wic support
|
||||||
IMAGE_BOOT_FILES_append = " boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES:append = " boot.scr-${MACHINE};boot.scr"
|
||||||
WKS_FILE_DEPENDS_append = " u-boot-default-script"
|
WKS_FILE_DEPENDS:append = " u-boot-default-script"
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
|
|
||||||
# Enable free --space-fixup (-F) by default, this allows DFU updates
|
# Enable free --space-fixup (-F) by default, this allows DFU updates
|
||||||
|
|
|
@ -18,14 +18,14 @@ KERNEL_DEVICETREE = " \
|
||||||
vf610-colibri-eval-v3.dtb \
|
vf610-colibri-eval-v3.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
KERNEL_DEVICETREE_append_use-nxp-bsp = " \
|
KERNEL_DEVICETREE:append:use-nxp-bsp = " \
|
||||||
vf500-colibri-aster.dtb \
|
vf500-colibri-aster.dtb \
|
||||||
vf610-colibri-aster.dtb \
|
vf610-colibri-aster.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
# U-Boot of our newer release read the Kernel and device tree from static UBI volumes,
|
# U-Boot of our newer release read the Kernel and device tree from static UBI volumes,
|
||||||
# hence no need to deploy the kernel binary in the image itself
|
# hence no need to deploy the kernel binary in the image itself
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
|
PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
|
||||||
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
|
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
|
||||||
|
@ -35,7 +35,7 @@ PREFERRED_PROVIDER_u-boot-default-script ?= "u-boot-script-toradex"
|
||||||
PREFERRED_PROVIDER_virtual/kernel-module-mcc ?= "kernel-module-mcc-toradex"
|
PREFERRED_PROVIDER_virtual/kernel-module-mcc ?= "kernel-module-mcc-toradex"
|
||||||
PREFERRED_PROVIDER_virtual/kernel-module-mcc-dev ?= "kernel-module-mcc-toradex"
|
PREFERRED_PROVIDER_virtual/kernel-module-mcc-dev ?= "kernel-module-mcc-toradex"
|
||||||
PREFERRED_VERSION_mqxboot ?= "1.%"
|
PREFERRED_VERSION_mqxboot ?= "1.%"
|
||||||
PREFERRED_VERSION_weston_use-nxp-bsp = ""
|
PREFERRED_VERSION_weston:use-nxp-bsp = ""
|
||||||
|
|
||||||
# U-Boot NAND binary includes 0x400 padding required for NAND boot
|
# U-Boot NAND binary includes 0x400 padding required for NAND boot
|
||||||
UBOOT_BINARY = "u-boot-nand.imx"
|
UBOOT_BINARY = "u-boot-nand.imx"
|
||||||
|
@ -44,8 +44,8 @@ UBOOT_MACHINE ?= "colibri_vf_defconfig"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "tar.xz ubifs"
|
IMAGE_FSTYPES += "tar.xz ubifs"
|
||||||
# wic support
|
# wic support
|
||||||
IMAGE_BOOT_FILES_append = " boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES:append = " boot.scr-${MACHINE};boot.scr"
|
||||||
WKS_FILE_DEPENDS_append = " u-boot-default-script"
|
WKS_FILE_DEPENDS:append = " u-boot-default-script"
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
|
|
||||||
# Enable free --space-fixup (-F) by default, this allows DFU updates
|
# Enable free --space-fixup (-F) by default, this allows DFU updates
|
||||||
|
|
|
@ -49,6 +49,6 @@ WKS_FILES ?= "imx-uboot-spl.wks.in"
|
||||||
WKS_FILE_DEPENDS ?= ""
|
WKS_FILE_DEPENDS ?= ""
|
||||||
IMAGE_FSTYPES = "wic.bmap wic.xz ext4.gz"
|
IMAGE_FSTYPES = "wic.bmap wic.xz ext4.gz"
|
||||||
|
|
||||||
MACHINE_FIRMWARE_append = " linux-firmware-ath10k"
|
MACHINE_FIRMWARE:append = " linux-firmware-ath10k"
|
||||||
|
|
||||||
MACHINE_FEATURES += " pci bluetooth touchscreen wifi"
|
MACHINE_FEATURES += " pci bluetooth touchscreen wifi"
|
||||||
|
|
|
@ -25,7 +25,7 @@ KERNEL_DEVICETREE = " \
|
||||||
imx6q-var-som-vsc.dtb \
|
imx6q-var-som-vsc.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
KERNEL_DEVICETREE_use-mainline-bsp = " \
|
KERNEL_DEVICETREE:use-mainline-bsp = " \
|
||||||
imx6q-var-som-vsc.dtb \
|
imx6q-var-som-vsc.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ WKS_FILE = "imx-uboot-spl-bootpart.wks.in"
|
||||||
|
|
||||||
PREFERRED_PROVIDER_virtual/bootloader = "u-boot-variscite"
|
PREFERRED_PROVIDER_virtual/bootloader = "u-boot-variscite"
|
||||||
PREFERRED_PROVIDER_u-boot = "u-boot-variscite"
|
PREFERRED_PROVIDER_u-boot = "u-boot-variscite"
|
||||||
UBOOT_ENTRYPOINT_use-mainline-bsp = "0x10008000"
|
UBOOT_ENTRYPOINT:use-mainline-bsp = "0x10008000"
|
||||||
|
|
||||||
UBOOT_CONFIG ??= "nand sd"
|
UBOOT_CONFIG ??= "nand sd"
|
||||||
UBOOT_CONFIG[sd] = "mx6var_som_sd_config,sdcard"
|
UBOOT_CONFIG[sd] = "mx6var_som_sd_config,sdcard"
|
||||||
|
@ -56,6 +56,6 @@ SERIAL_CONSOLES = "115200;ttymxc0"
|
||||||
|
|
||||||
USE_VT = "0"
|
USE_VT = "0"
|
||||||
|
|
||||||
MACHINE_FIRMWARE_append = " linux-firmware-wl12xx linux-firmware-wl18xx ti-18xx-wlconf"
|
MACHINE_FIRMWARE:append = " linux-firmware-wl12xx linux-firmware-wl18xx ti-18xx-wlconf"
|
||||||
|
|
||||||
MACHINE_FEATURES += " pci bluetooth touchscreen wifi"
|
MACHINE_FEATURES += " pci bluetooth touchscreen wifi"
|
||||||
|
|
|
@ -45,7 +45,7 @@ PREFERRED_VERSION_qoriq-atf = "1.5%"
|
||||||
|
|
||||||
IMAGE_FSTYPES += "wic"
|
IMAGE_FSTYPES += "wic"
|
||||||
WKS_FILE = "lx2160acex7.wks.in"
|
WKS_FILE = "lx2160acex7.wks.in"
|
||||||
WKS_FILE_DEPENDS_append = "\
|
WKS_FILE_DEPENDS:append = "\
|
||||||
${PREFERRED_PROVIDER_u-boot-default-script} \
|
${PREFERRED_PROVIDER_u-boot-default-script} \
|
||||||
"
|
"
|
||||||
IMAGE_BOOT_FILES ?= "${KERNEL_IMAGETYPE} ${KERNEL_DEVICETREE_BASENAME} boot.scr-${MACHINE};boot.scr"
|
IMAGE_BOOT_FILES ?= "${KERNEL_IMAGETYPE} ${KERNEL_DEVICETREE_BASENAME} boot.scr-${MACHINE};boot.scr"
|
||||||
|
|
|
@ -21,7 +21,7 @@ PREFERRED_PROVIDER_virtual/kernel_use-mainline-bsp ??= "linux-fslc"
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
"
|
"
|
||||||
WKS_FILE_DEPENDS = " \
|
WKS_FILE_DEPENDS = " \
|
||||||
|
|
|
@ -21,7 +21,7 @@ PREFERRED_PROVIDER_virtual/kernel_use-mainline-bsp ??= "linux-fslc"
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
"
|
"
|
||||||
WKS_FILE_DEPENDS = " \
|
WKS_FILE_DEPENDS = " \
|
||||||
|
|
|
@ -44,7 +44,7 @@ KERNEL_DEVICETREE = "imx6q-sabrelite.dtb \
|
||||||
"
|
"
|
||||||
|
|
||||||
# Not yet supported by Linux mainline
|
# Not yet supported by Linux mainline
|
||||||
KERNEL_DEVICETREE_remove_use-mainline-bsp = "imx6dl-nitrogen6_vm.dtb imx6dl-nitrogen6_vm-magstripe.dtb"
|
KERNEL_DEVICETREE:remove:use-mainline-bsp = "imx6dl-nitrogen6_vm.dtb imx6dl-nitrogen6_vm-magstripe.dtb"
|
||||||
|
|
||||||
KERNEL_IMAGETYPE = "zImage"
|
KERNEL_IMAGETYPE = "zImage"
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ PREFERRED_PROVIDER_virtual/kernel_use-mainline-bsp ??= "linux-fslc"
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
"
|
"
|
||||||
WKS_FILE_DEPENDS = " \
|
WKS_FILE_DEPENDS = " \
|
||||||
|
|
|
@ -21,7 +21,7 @@ PREFERRED_PROVIDER_virtual/kernel_use-mainline-bsp ??= "linux-fslc"
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
"
|
"
|
||||||
WKS_FILE_DEPENDS = " \
|
WKS_FILE_DEPENDS = " \
|
||||||
|
|
|
@ -21,7 +21,7 @@ KERNEL_DEVICETREE = "freescale/imx8mq-nitrogen8m.dtb \
|
||||||
freescale/imx8mq-nitrogen8m-edp.dtb \
|
freescale/imx8mq-nitrogen8m-edp.dtb \
|
||||||
"
|
"
|
||||||
KERNEL_IMAGETYPE = "Image"
|
KERNEL_IMAGETYPE = "Image"
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
# U-Boot configuration
|
# U-Boot configuration
|
||||||
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
||||||
|
@ -56,7 +56,7 @@ DDR_FIRMWARE_NAME = "\
|
||||||
lpddr4_pmu_train_2d_dmem.bin \
|
lpddr4_pmu_train_2d_dmem.bin \
|
||||||
"
|
"
|
||||||
|
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
upgrade.scr-${MACHINE};upgrade.scr \
|
upgrade.scr-${MACHINE};upgrade.scr \
|
||||||
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
||||||
|
@ -64,7 +64,7 @@ IMAGE_BOOT_FILES_append = " \
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
WKS_FILE_DEPENDS_mx8 += " \
|
WKS_FILE_DEPENDS:mx8 += " \
|
||||||
u-boot-script-boundary \
|
u-boot-script-boundary \
|
||||||
e2fsprogs-native \
|
e2fsprogs-native \
|
||||||
bmap-tools-native \
|
bmap-tools-native \
|
||||||
|
|
|
@ -25,7 +25,7 @@ KERNEL_DEVICETREE = "freescale/imx8mq-nitrogen8m.dtb \
|
||||||
freescale/imx8mm-nitrogen8mm_som-tc358743.dtb \
|
freescale/imx8mm-nitrogen8mm_som-tc358743.dtb \
|
||||||
"
|
"
|
||||||
KERNEL_IMAGETYPE = "Image"
|
KERNEL_IMAGETYPE = "Image"
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
# U-Boot configuration
|
# U-Boot configuration
|
||||||
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
||||||
|
@ -61,7 +61,7 @@ DDR_FIRMWARE_NAME = "\
|
||||||
lpddr4_pmu_train_2d_dmem.bin \
|
lpddr4_pmu_train_2d_dmem.bin \
|
||||||
"
|
"
|
||||||
|
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
upgrade.scr-${MACHINE};upgrade.scr \
|
upgrade.scr-${MACHINE};upgrade.scr \
|
||||||
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
||||||
|
@ -69,7 +69,7 @@ IMAGE_BOOT_FILES_append = " \
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
WKS_FILE_DEPENDS_mx8 += " \
|
WKS_FILE_DEPENDS:mx8 += " \
|
||||||
u-boot-script-boundary \
|
u-boot-script-boundary \
|
||||||
e2fsprogs-native \
|
e2fsprogs-native \
|
||||||
bmap-tools-native \
|
bmap-tools-native \
|
||||||
|
|
|
@ -20,7 +20,7 @@ KERNEL_DEVICETREE = "freescale/imx8mn-nitrogen8mn.dtb \
|
||||||
|
|
||||||
KERNEL_IMAGETYPE = "Image"
|
KERNEL_IMAGETYPE = "Image"
|
||||||
KERNEL_DEFCONFIG = "boundary_defconfig"
|
KERNEL_DEFCONFIG = "boundary_defconfig"
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
# U-Boot configuration
|
# U-Boot configuration
|
||||||
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
||||||
|
@ -55,7 +55,7 @@ DDR_FIRMWARE_NAME = "\
|
||||||
lpddr4_pmu_train_2d_dmem.bin \
|
lpddr4_pmu_train_2d_dmem.bin \
|
||||||
"
|
"
|
||||||
|
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
upgrade.scr-${MACHINE};upgrade.scr \
|
upgrade.scr-${MACHINE};upgrade.scr \
|
||||||
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
||||||
|
@ -63,7 +63,7 @@ IMAGE_BOOT_FILES_append = " \
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
WKS_FILE_DEPENDS_mx8 += " \
|
WKS_FILE_DEPENDS:mx8 += " \
|
||||||
u-boot-script-boundary \
|
u-boot-script-boundary \
|
||||||
e2fsprogs-native \
|
e2fsprogs-native \
|
||||||
bmap-tools-native \
|
bmap-tools-native \
|
||||||
|
|
|
@ -15,7 +15,7 @@ KERNEL_DEVICETREE = "freescale/imx8mp-nitrogen8mp.dtb \
|
||||||
freescale/imx8mp-a0-nitrogen8mp.dtb \
|
freescale/imx8mp-a0-nitrogen8mp.dtb \
|
||||||
"
|
"
|
||||||
KERNEL_IMAGETYPE = "Image"
|
KERNEL_IMAGETYPE = "Image"
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
|
||||||
|
|
||||||
# U-Boot configuration
|
# U-Boot configuration
|
||||||
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
PREFERRED_PROVIDER_u-boot ??= "u-boot-boundary"
|
||||||
|
@ -50,12 +50,12 @@ DDR_FIRMWARE_NAME = "\
|
||||||
|
|
||||||
# wic support
|
# wic support
|
||||||
WKS_FILE = "sdimage-bootpart.wks"
|
WKS_FILE = "sdimage-bootpart.wks"
|
||||||
IMAGE_BOOT_FILES_append = " \
|
IMAGE_BOOT_FILES:append = " \
|
||||||
boot.scr-${MACHINE};boot.scr \
|
boot.scr-${MACHINE};boot.scr \
|
||||||
upgrade.scr-${MACHINE};upgrade.scr \
|
upgrade.scr-${MACHINE};upgrade.scr \
|
||||||
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
imx-boot;u-boot.${BOUNDARY_DEVICES_UBOOT_DEFCONFIG} \
|
||||||
"
|
"
|
||||||
WKS_FILE_DEPENDS_mx8 += " \
|
WKS_FILE_DEPENDS:mx8 += " \
|
||||||
u-boot-script-boundary \
|
u-boot-script-boundary \
|
||||||
e2fsprogs-native \
|
e2fsprogs-native \
|
||||||
bmap-tools-native \
|
bmap-tools-native \
|
||||||
|
|
|
@ -38,7 +38,7 @@ KERNEL_DEVICETREE = " \
|
||||||
KERNEL_IMAGETYPE = "uImage"
|
KERNEL_IMAGETYPE = "uImage"
|
||||||
|
|
||||||
# Not yet supported by Linux mainline
|
# Not yet supported by Linux mainline
|
||||||
KERNEL_DEVICETREE_remove_use-mainline-bsp = "imx6q-gw560x.dtb imx6dl-gw560x.dtb"
|
KERNEL_DEVICETREE:remove:use-mainline-bsp = "imx6q-gw560x.dtb imx6dl-gw560x.dtb"
|
||||||
|
|
||||||
MACHINE_FEATURES += "pci wifi bluetooth"
|
MACHINE_FEATURES += "pci wifi bluetooth"
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "\
|
||||||
# Bootloader configs:
|
# Bootloader configs:
|
||||||
UBOOT_CONFIG ??= "std"
|
UBOOT_CONFIG ??= "std"
|
||||||
UBOOT_CONFIG[std] = "gwventana_config"
|
UBOOT_CONFIG[std] = "gwventana_config"
|
||||||
UBOOT_ENTRYPOINT_use-mainline-bsp = "0x10008000"
|
UBOOT_ENTRYPOINT:use-mainline-bsp = "0x10008000"
|
||||||
|
|
||||||
SERIAL_CONSOLES = "115200;ttymxc1"
|
SERIAL_CONSOLES = "115200;ttymxc1"
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ UBOOT_EXTLINUX_ROOT = "root=PARTUUID=${uuid}"
|
||||||
UBOOT_EXTLINUX_CONSOLE = "console=${console},${baudrate}"
|
UBOOT_EXTLINUX_CONSOLE = "console=${console},${baudrate}"
|
||||||
|
|
||||||
WANDBOARD_DEFAULT_KERNEL = "linux-wandboard"
|
WANDBOARD_DEFAULT_KERNEL = "linux-wandboard"
|
||||||
WANDBOARD_DEFAULT_KERNEL_use-mainline-bsp = "linux-fslc"
|
WANDBOARD_DEFAULT_KERNEL:use-mainline-bsp = "linux-fslc"
|
||||||
PREFERRED_PROVIDER_virtual/kernel ?= "${WANDBOARD_DEFAULT_KERNEL}"
|
PREFERRED_PROVIDER_virtual/kernel ?= "${WANDBOARD_DEFAULT_KERNEL}"
|
||||||
KERNEL_DEVICETREE = " \
|
KERNEL_DEVICETREE = " \
|
||||||
imx6dl-wandboard.dtb \
|
imx6dl-wandboard.dtb \
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
FILESEXTRAPATHS_prepend_cubox-i := "${THISDIR}/files:"
|
FILESEXTRAPATHS:prepend:cubox-i := "${THISDIR}/files:"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FILESEXTRAPATHS_append_lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
FILESEXTRAPATHS:append:lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
||||||
|
|
||||||
SRC_URI_append_lx2160acex7 = "\
|
SRC_URI:append:lx2160acex7 = "\
|
||||||
file://0001-plat-nxp-Add-lx2160acex7-module-support.patch \
|
file://0001-plat-nxp-Add-lx2160acex7-module-support.patch \
|
||||||
file://0002-plat-nxp-lx2160a-auto-boot.patch \
|
file://0002-plat-nxp-lx2160a-auto-boot.patch \
|
||||||
"
|
"
|
||||||
|
|
|
@ -20,11 +20,11 @@ SRC_URI += " \
|
||||||
file://brcmfmac${CHIP_MODEL}-sdio.txt \
|
file://brcmfmac${CHIP_MODEL}-sdio.txt \
|
||||||
"
|
"
|
||||||
|
|
||||||
FILES_${PN} = " \
|
FILES:${PN} = " \
|
||||||
${BRCM_FWDIR}/brcmfmac${CHIP_MODEL}-sdio.txt \
|
${BRCM_FWDIR}/brcmfmac${CHIP_MODEL}-sdio.txt \
|
||||||
"
|
"
|
||||||
|
|
||||||
RDEPENDS_${PN} = " \
|
RDEPENDS:${PN} = " \
|
||||||
linux-firmware-bcm${CHIP_MODEL} \
|
linux-firmware-bcm${CHIP_MODEL} \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
||||||
|
|
|
@ -21,10 +21,10 @@ inherit deploy
|
||||||
BOOT_TOOLS = "imx-boot-tools"
|
BOOT_TOOLS = "imx-boot-tools"
|
||||||
|
|
||||||
ATF_PLATFORM ?= "INVALID"
|
ATF_PLATFORM ?= "INVALID"
|
||||||
ATF_PLATFORM_mx8mq = "imx8mq"
|
ATF_PLATFORM:mx8mq = "imx8mq"
|
||||||
ATF_PLATFORM_mx8mm = "imx8mm"
|
ATF_PLATFORM:mx8mm = "imx8mm"
|
||||||
ATF_PLATFORM_mx8mn = "imx8mn"
|
ATF_PLATFORM:mx8mn = "imx8mn"
|
||||||
ATF_PLATFORM_mx8mp = "imx8mp"
|
ATF_PLATFORM:mx8mp = "imx8mp"
|
||||||
|
|
||||||
EXTRA_OEMAKE += " \
|
EXTRA_OEMAKE += " \
|
||||||
CROSS_COMPILE="${TARGET_PREFIX}" \
|
CROSS_COMPILE="${TARGET_PREFIX}" \
|
||||||
|
|
|
@ -17,7 +17,7 @@ S = "${WORKDIR}/libmcc-${PV}"
|
||||||
|
|
||||||
CFLAGS += "-I${STAGING_KERNEL_DIR}/include"
|
CFLAGS += "-I${STAGING_KERNEL_DIR}/include"
|
||||||
|
|
||||||
RDEPENDS_${PN} = "virtual/kernel-module-mcc"
|
RDEPENDS:${PN} = "virtual/kernel-module-mcc"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE = "(vf60)"
|
COMPATIBLE_MACHINE = "(vf60)"
|
||||||
|
|
||||||
|
@ -25,5 +25,5 @@ do_install() {
|
||||||
oe_runmake 'DESTDIR=${D}' install
|
oe_runmake 'DESTDIR=${D}' install
|
||||||
}
|
}
|
||||||
|
|
||||||
RDEPENDS_${PN}-dev += "virtual/kernel-module-mcc-dev"
|
RDEPENDS:${PN}-dev += "virtual/kernel-module-mcc-dev"
|
||||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
FILESEXTRAPATHS_append_lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
FILESEXTRAPATHS:append:lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
||||||
|
|
||||||
SRC_URI_append_lx2160acex7 = "\
|
SRC_URI:append:lx2160acex7 = "\
|
||||||
file://0001-lx2160acex7-add-8x10G-dual-40G-and-dual-100G-DPL-DPC.patch \
|
file://0001-lx2160acex7-add-8x10G-dual-40G-and-dual-100G-DPL-DPC.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
MC_FLAVOUR_lx2160acex7 = "CEX7"
|
MC_FLAVOUR:lx2160acex7 = "CEX7"
|
||||||
|
|
|
@ -15,7 +15,7 @@ S = "${WORKDIR}/mqxboot-${PV}"
|
||||||
|
|
||||||
CFLAGS += "-I${STAGING_KERNEL_DIR}/include"
|
CFLAGS += "-I${STAGING_KERNEL_DIR}/include"
|
||||||
|
|
||||||
RDEPENDS_${PN} = "virtual/kernel-module-mcc"
|
RDEPENDS:${PN} = "virtual/kernel-module-mcc"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE = "(vf60)"
|
COMPATIBLE_MACHINE = "(vf60)"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FILESEXTRAPATHS_append_lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
FILESEXTRAPATHS:append:lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
||||||
|
|
||||||
SRC_URI_append_lx2160acex7 = "\
|
SRC_URI:append:lx2160acex7 = "\
|
||||||
file://0001-lx2160acex7-misc-RCW-files.patch \
|
file://0001-lx2160acex7-misc-RCW-files.patch \
|
||||||
file://0002-Set-io-pads-as-GPIO.patch \
|
file://0002-Set-io-pads-as-GPIO.patch \
|
||||||
file://0003-S2-enable-gen3-xspi-increase-divisor-to-28.patch \
|
file://0003-S2-enable-gen3-xspi-increase-divisor-to-28.patch \
|
||||||
|
@ -11,7 +11,7 @@ SRC_URI_append_lx2160acex7 = "\
|
||||||
file://0009-lx2160acex7-remove-all-predefined-RCW-files.patch \
|
file://0009-lx2160acex7-remove-all-predefined-RCW-files.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
do_configure_prepend_lx2160acex7 () {
|
do_configure:prepend:lx2160acex7 () {
|
||||||
for BT in ${BOARD_TARGETS}
|
for BT in ${BOARD_TARGETS}
|
||||||
do
|
do
|
||||||
mkdir -p ${S}/${BOARD_TARGETS}/${SERDES}
|
mkdir -p ${S}/${BOARD_TARGETS}/${SERDES}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
require recipes-bsp/u-boot/u-boot.inc
|
require recipes-bsp/u-boot/u-boot.inc
|
||||||
require recipes-bsp/u-boot/u-boot-boundary-common_${PV}.inc
|
require recipes-bsp/u-boot/u-boot-boundary-common_${PV}.inc
|
||||||
|
|
||||||
FILESEXTRAPATHS_prepend_mx6 := "${THISDIR}/${PN}/arm:"
|
FILESEXTRAPATHS:prepend:mx6 := "${THISDIR}/${PN}/arm:"
|
||||||
FILESEXTRAPATHS_prepend_mx7 := "${THISDIR}/${PN}/arm:"
|
FILESEXTRAPATHS:prepend:mx7 := "${THISDIR}/${PN}/arm:"
|
||||||
FILESEXTRAPATHS_prepend_mx8 := "${THISDIR}/${PN}/aarch64:"
|
FILESEXTRAPATHS:prepend:mx8 := "${THISDIR}/${PN}/aarch64:"
|
||||||
|
|
||||||
DEPENDS += "bison-native"
|
DEPENDS += "bison-native"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ PROVIDES += "u-boot"
|
||||||
|
|
||||||
BOOT_TOOLS = "imx-boot-tools"
|
BOOT_TOOLS = "imx-boot-tools"
|
||||||
|
|
||||||
do_deploy_append_mx8 () {
|
do_deploy:append:mx8 () {
|
||||||
install -d ${DEPLOYDIR}/${BOOT_TOOLS}
|
install -d ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||||
install -m 0777 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}
|
install -m 0777 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||||
install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${UBOOT_CONFIG}
|
install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${UBOOT_CONFIG}
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
COMPATIBLE_MACHINE_imx6sl-warp = "(.)"
|
COMPATIBLE_MACHINE:imx6sl-warp = "(.)"
|
||||||
COMPATIBLE_MACHINE_imx6dl-riotboard = "(.)"
|
COMPATIBLE_MACHINE:imx6dl-riotboard = "(.)"
|
||||||
|
|
|
@ -28,14 +28,14 @@ SRCREV= "1e55b2f9e7f56b76569089b9e950f49c1579580e"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
B = "${WORKDIR}/build"
|
B = "${WORKDIR}/build"
|
||||||
PV_append = "+fslgit"
|
PV:append = "+fslgit"
|
||||||
LOCALVERSION = "+fsl"
|
LOCALVERSION = "+fsl"
|
||||||
|
|
||||||
INHIBIT_DEFAULT_DEPS = "1"
|
INHIBIT_DEFAULT_DEPS = "1"
|
||||||
DEPENDS = "libgcc virtual/${TARGET_PREFIX}gcc bison-native bc-native swig-native python3-native"
|
DEPENDS = "libgcc virtual/${TARGET_PREFIX}gcc bison-native bc-native swig-native python3-native"
|
||||||
DEPENDS_append_qoriq-arm64 = " dtc-native"
|
DEPENDS:append:qoriq-arm64 = " dtc-native"
|
||||||
DEPENDS_append_qoriq-arm = " dtc-native"
|
DEPENDS:append:qoriq-arm = " dtc-native"
|
||||||
DEPENDS_append_qoriq-ppc = " boot-format-native"
|
DEPENDS:append:qoriq-ppc = " boot-format-native"
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
if d.getVar("TCMODE") == "external-fsl":
|
if d.getVar("TCMODE") == "external-fsl":
|
||||||
|
@ -50,8 +50,8 @@ python () {
|
||||||
sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib32-linux'
|
sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib32-linux'
|
||||||
sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
|
sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
|
||||||
workdir = d.getVar('WORKDIR')
|
workdir = d.getVar('WORKDIR')
|
||||||
d.setVar('DEPENDS_append', ' lib32-gcc-cross-powerpc lib32-libgcc')
|
d.setVar('DEPENDS:append', ' lib32-gcc-cross-powerpc lib32-libgcc')
|
||||||
d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/powerpc' + sys_multilib)
|
d.setVar('PATH:append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/powerpc' + sys_multilib)
|
||||||
d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib32-recipe-sysroot')
|
d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib32-recipe-sysroot')
|
||||||
d.setVar("WRAP_TARGET_PREFIX", 'powerpc' + sys_multilib + '-')
|
d.setVar("WRAP_TARGET_PREFIX", 'powerpc' + sys_multilib + '-')
|
||||||
elif "fsl-lsch2-32b:" in arch:
|
elif "fsl-lsch2-32b:" in arch:
|
||||||
|
@ -60,8 +60,8 @@ python () {
|
||||||
sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib64-linux'
|
sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib64-linux'
|
||||||
sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
|
sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
|
||||||
workdir = d.getVar('WORKDIR')
|
workdir = d.getVar('WORKDIR')
|
||||||
d.setVar('DEPENDS_append', ' lib64-gcc-cross-aarch64 lib64-libgcc')
|
d.setVar('DEPENDS:append', ' lib64-gcc-cross-aarch64 lib64-libgcc')
|
||||||
d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/aarch64' + sys_multilib)
|
d.setVar('PATH:append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/aarch64' + sys_multilib)
|
||||||
d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib64-recipe-sysroot')
|
d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib64-recipe-sysroot')
|
||||||
d.setVar("WRAP_TARGET_PREFIX", 'aarch64' + sys_multilib + '-')
|
d.setVar("WRAP_TARGET_PREFIX", 'aarch64' + sys_multilib + '-')
|
||||||
}
|
}
|
||||||
|
@ -75,7 +75,7 @@ EXTRA_OEMAKE = 'CROSS_COMPILE=${WRAP_TARGET_PREFIX} CC="${WRAP_TARGET_PREFIX}gcc
|
||||||
EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"'
|
EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"'
|
||||||
EXTRA_OEMAKE += 'STAGING_INCDIR=${STAGING_INCDIR_NATIVE} STAGING_LIBDIR=${STAGING_LIBDIR_NATIVE}'
|
EXTRA_OEMAKE += 'STAGING_INCDIR=${STAGING_INCDIR_NATIVE} STAGING_LIBDIR=${STAGING_LIBDIR_NATIVE}'
|
||||||
|
|
||||||
do_compile_append_qoriq() {
|
do_compile:append:qoriq() {
|
||||||
unset i j k
|
unset i j k
|
||||||
for config in ${UBOOT_MACHINE}; do
|
for config in ${UBOOT_MACHINE}; do
|
||||||
i=`expr $i + 1`;
|
i=`expr $i + 1`;
|
||||||
|
@ -103,5 +103,5 @@ do_compile_append_qoriq() {
|
||||||
|
|
||||||
|
|
||||||
PACKAGES += "${PN}-images"
|
PACKAGES += "${PN}-images"
|
||||||
FILES_${PN}-images += "/boot"
|
FILES:${PN}-images += "/boot"
|
||||||
COMPATIBLE_MACHINE = "(qoriq)"
|
COMPATIBLE_MACHINE = "(qoriq)"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FILESEXTRAPATHS_append_lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
FILESEXTRAPATHS:append:lx2160acex7 := "${THISDIR}/${PN}-lx2160acex7:"
|
||||||
|
|
||||||
SRC_URI_append_lx2160acex7 = "\
|
SRC_URI:append:lx2160acex7 = "\
|
||||||
file://0001-armv8-add-lx2160acex7-build-inclusion.patch \
|
file://0001-armv8-add-lx2160acex7-build-inclusion.patch \
|
||||||
file://0002-armv8-lx2160acex-misc-hacks-to-get-the-sources-built.patch \
|
file://0002-armv8-lx2160acex-misc-hacks-to-get-the-sources-built.patch \
|
||||||
file://0003-armv8-lx2160acex7-defconfig-and-main-platform-includ.patch \
|
file://0003-armv8-lx2160acex7-defconfig-and-main-platform-includ.patch \
|
||||||
|
|
|
@ -5,7 +5,7 @@ DEPENDS = "u-boot-mkimage-native"
|
||||||
inherit deploy
|
inherit deploy
|
||||||
|
|
||||||
BOOTSCRIPT ??= "${S}/board/boundary/bootscripts/bootscript-yocto.txt"
|
BOOTSCRIPT ??= "${S}/board/boundary/bootscripts/bootscript-yocto.txt"
|
||||||
BOOTSCRIPT_use-mainline-bsp ??= "${S}/board/boundary/bootscripts/bootscript-mainline.txt"
|
BOOTSCRIPT:use-mainline-bsp ??= "${S}/board/boundary/bootscripts/bootscript-mainline.txt"
|
||||||
|
|
||||||
UPGRADESCRIPT = "${S}/board/boundary/bootscripts/upgrade.txt"
|
UPGRADESCRIPT = "${S}/board/boundary/bootscripts/upgrade.txt"
|
||||||
|
|
||||||
|
@ -40,6 +40,6 @@ do_deploy () {
|
||||||
|
|
||||||
addtask deploy after do_install before do_build
|
addtask deploy after do_install before do_build
|
||||||
|
|
||||||
FILES_${PN} += "/"
|
FILES:${PN} += "/"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE = "(nitrogen6x-lite|nitrogen6x|nitrogen6sx|nitrogen7|nitrogen8m|nitrogen8mm|nitrogen8mn|nitrogen8mp)"
|
COMPATIBLE_MACHINE = "(nitrogen6x-lite|nitrogen6x|nitrogen6sx|nitrogen7|nitrogen8m|nitrogen8mm|nitrogen8mn|nitrogen8mp)"
|
||||||
|
|
|
@ -24,7 +24,7 @@ do_install() {
|
||||||
ln -sf 6x_bootscript-${MACHINE}-${PV}-${PR} 6x_bootscript-${MACHINE}
|
ln -sf 6x_bootscript-${MACHINE}-${PV}-${PR} 6x_bootscript-${MACHINE}
|
||||||
}
|
}
|
||||||
|
|
||||||
FILES_${PN} = "${DESTDIR}/*"
|
FILES:${PN} = "${DESTDIR}/*"
|
||||||
|
|
||||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||||
COMPATIBLE_MACHINE = "(ventana)"
|
COMPATIBLE_MACHINE = "(ventana)"
|
||||||
|
|
|
@ -51,4 +51,4 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE = "(qoriq)"
|
COMPATIBLE_MACHINE = "(qoriq)"
|
||||||
|
|
||||||
FILES_${PN} = "/boot"
|
FILES:${PN} = "/boot"
|
||||||
|
|
|
@ -10,7 +10,7 @@ SRC_URI = "\
|
||||||
"
|
"
|
||||||
|
|
||||||
KERNEL_BOOTCMD ??= "bootz"
|
KERNEL_BOOTCMD ??= "bootz"
|
||||||
KERNEL_BOOTCMD_aarch64 ?= "booti"
|
KERNEL_BOOTCMD:aarch64 ?= "booti"
|
||||||
|
|
||||||
inherit deploy nopackages
|
inherit deploy nopackages
|
||||||
|
|
||||||
|
|
|
@ -18,14 +18,14 @@ nand_padding () {
|
||||||
dd bs=1024 count=1 if=/dev/zero | cat - u-boot.imx > u-boot-nand.imx
|
dd bs=1024 count=1 if=/dev/zero | cat - u-boot.imx > u-boot-nand.imx
|
||||||
}
|
}
|
||||||
|
|
||||||
do_compile_append_colibri-imx6ull () {
|
do_compile:append:colibri-imx6ull () {
|
||||||
nand_padding
|
nand_padding
|
||||||
}
|
}
|
||||||
|
|
||||||
do_compile_append_colibri-imx7 () {
|
do_compile:append:colibri-imx7 () {
|
||||||
nand_padding
|
nand_padding
|
||||||
}
|
}
|
||||||
|
|
||||||
do_compile_append_colibri-vf () {
|
do_compile:append:colibri-vf () {
|
||||||
nand_padding
|
nand_padding
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,11 +30,11 @@ do_install() {
|
||||||
${D}${sbindir}/wlconf/official_inis/
|
${D}${sbindir}/wlconf/official_inis/
|
||||||
}
|
}
|
||||||
|
|
||||||
FILES_${PN} += " \
|
FILES:${PN} += " \
|
||||||
${sbindir}/wlconf \
|
${sbindir}/wlconf \
|
||||||
${sbindir}/wlconf/official_inis \
|
${sbindir}/wlconf/official_inis \
|
||||||
/lib/firmware/ti-connectivity/wl18xx-conf.bin \
|
/lib/firmware/ti-connectivity/wl18xx-conf.bin \
|
||||||
"
|
"
|
||||||
|
|
||||||
FILES_${PN}-dbg += "${sbindir}/wlconf/.debug"
|
FILES:${PN}-dbg += "${sbindir}/wlconf/.debug"
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
FILESEXTRAPATHS_prepend := "${THISDIR}/init-ifupdown:"
|
FILESEXTRAPATHS:prepend := "${THISDIR}/init-ifupdown:"
|
||||||
|
|
|
@ -5,8 +5,8 @@ LICENSE = "GPL-2.0"
|
||||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=c8959abcbbe4d6676c58eab9354019e6"
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c8959abcbbe4d6676c58eab9354019e6"
|
||||||
|
|
||||||
PROVIDES = "virtual/kernel-module-mcc"
|
PROVIDES = "virtual/kernel-module-mcc"
|
||||||
RPROVIDES_${PN} = "virtual/kernel-module-mcc"
|
RPROVIDES:${PN} = "virtual/kernel-module-mcc"
|
||||||
RPROVIDES_${PN}-dev = "virtual/kernel-module-mcc-dev"
|
RPROVIDES:${PN}-dev = "virtual/kernel-module-mcc-dev"
|
||||||
|
|
||||||
inherit module
|
inherit module
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
# TIInit_11.8.32.bts is required for bluetooth support but this particular
|
# TIInit_11.8.32.bts is required for bluetooth support but this particular
|
||||||
# version is not available in the linux-firmware repository.
|
# version is not available in the linux-firmware repository.
|
||||||
#
|
#
|
||||||
SRC_URI_append_imx6qdl-variscite-som = "\
|
SRC_URI:append:imx6qdl-variscite-som = "\
|
||||||
https://git.ti.com/ti-bt/service-packs/blobs/raw/5f73abe7c03631bb2596af27e41a94abcc70b009/initscripts/TIInit_11.8.32.bts;name=TIInit_11.8.32 \
|
https://git.ti.com/ti-bt/service-packs/blobs/raw/5f73abe7c03631bb2596af27e41a94abcc70b009/initscripts/TIInit_11.8.32.bts;name=TIInit_11.8.32 \
|
||||||
"
|
"
|
||||||
SRC_URI[TIInit_11.8.32.md5sum] = "a76788680905c30979038f9e6aa407f3"
|
SRC_URI[TIInit_11.8.32.md5sum] = "a76788680905c30979038f9e6aa407f3"
|
||||||
SRC_URI[TIInit_11.8.32.sha256sum] = "26ab0608e39fab95a6a55070c2f8364c92aad34442e8349abda71cee4da3277a"
|
SRC_URI[TIInit_11.8.32.sha256sum] = "26ab0608e39fab95a6a55070c2f8364c92aad34442e8349abda71cee4da3277a"
|
||||||
|
|
||||||
do_install_append_imx6qdl-variscite-som() {
|
do_install:append:imx6qdl-variscite-som() {
|
||||||
cp ${WORKDIR}/TIInit_11.8.32.bts ${D}/lib/firmware/ti-connectivity/
|
cp ${WORKDIR}/TIInit_11.8.32.bts ${D}/lib/firmware/ti-connectivity/
|
||||||
}
|
}
|
||||||
|
|
||||||
PACKAGE_ARCH_imx6qdl-variscite-som = "${MACHINE_ARCH}"
|
PACKAGE_ARCH:imx6qdl-variscite-som = "${MACHINE_ARCH}"
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE_imx6sl-warp = "(.)"
|
COMPATIBLE_MACHINE:imx6sl-warp = "(.)"
|
||||||
COMPATIBLE_MACHINE_imx6dl-riotboard = "(.)"
|
COMPATIBLE_MACHINE:imx6dl-riotboard = "(.)"
|
||||||
|
|
||||||
SRC_URI_append_imx6qdl-variscite-som_use-mainline-bsp = " \
|
SRC_URI:append:imx6qdl-variscite-som:use-mainline-bsp = " \
|
||||||
file://imx6qdl-var-som.dtsi \
|
file://imx6qdl-var-som.dtsi \
|
||||||
file://imx6q-var-som-vsc.dts \
|
file://imx6q-var-som-vsc.dts \
|
||||||
"
|
"
|
||||||
|
|
||||||
do_configure_prepend_imx6qdl-variscite-som() {
|
do_configure:prepend:imx6qdl-variscite-som() {
|
||||||
cp ${WORKDIR}/imx6*-var*.dts* ${S}/arch/arm/boot/dts
|
cp ${WORKDIR}/imx6*-var*.dts* ${S}/arch/arm/boot/dts
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FILESEXTRAPATHS_append_lx2160acex7 := "${THISDIR}/linux-fslc-qoriq-lx2160acex7:"
|
FILESEXTRAPATHS:append:lx2160acex7 := "${THISDIR}/linux-fslc-qoriq-lx2160acex7:"
|
||||||
|
|
||||||
SRC_URI_append_lx2160acex7 = "\
|
SRC_URI:append:lx2160acex7 = "\
|
||||||
file://0001-arm64-dts-lx2160a-add-lx2160acex7-device-tree-build.patch \
|
file://0001-arm64-dts-lx2160a-add-lx2160acex7-device-tree-build.patch \
|
||||||
file://0002-arm64-dts-lx2160a-add-lx2160acex7-device-tree.patch \
|
file://0002-arm64-dts-lx2160a-add-lx2160acex7-device-tree.patch \
|
||||||
file://0005-arm64-dts-lx2160a-cex7-add-ltc3882-support.patch \
|
file://0005-arm64-dts-lx2160a-cex7-add-ltc3882-support.patch \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-${PV}:"
|
||||||
|
|
||||||
require recipes-kernel/linux/linux-imx.inc
|
require recipes-kernel/linux/linux-imx.inc
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ SRC_URI = "git://git.toradex.com/linux-toradex.git;protocol=git;branch=${SRCBRAN
|
||||||
# Load USB functions configurable through configfs (CONFIG_USB_CONFIGFS)
|
# Load USB functions configurable through configfs (CONFIG_USB_CONFIGFS)
|
||||||
KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains('COMBINED_FEATURES', 'usbgadget', ' libcomposite', '',d)}"
|
KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains('COMBINED_FEATURES', 'usbgadget', ' libcomposite', '',d)}"
|
||||||
|
|
||||||
PV_append = "+git${SRCPV}"
|
PV:append = "+git${SRCPV}"
|
||||||
|
|
||||||
LINUX_VERSION = "4.14.159"
|
LINUX_VERSION = "4.14.159"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-${PV}:"
|
||||||
require recipes-kernel/linux/linux-imx.inc
|
require recipes-kernel/linux/linux-imx.inc
|
||||||
|
|
||||||
SUMMARY = "Linux kernel for Toradex Colibri VFxx Computer on Modules"
|
SUMMARY = "Linux kernel for Toradex Colibri VFxx Computer on Modules"
|
||||||
|
@ -9,7 +9,7 @@ SRC_URI = "git://git.toradex.com/linux-toradex.git;protocol=git;branch=${SRCBRAN
|
||||||
KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains('COMBINED_FEATURES', 'usbgadget', ' libcomposite', '',d)}"
|
KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains('COMBINED_FEATURES', 'usbgadget', ' libcomposite', '',d)}"
|
||||||
|
|
||||||
LOCALVERSION = "-0.0.0"
|
LOCALVERSION = "-0.0.0"
|
||||||
PV_append = "+git${SRCPV}"
|
PV:append = "+git${SRCPV}"
|
||||||
|
|
||||||
LINUX_VERSION = "4.4.274"
|
LINUX_VERSION = "4.4.274"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user