48 lines
1.8 KiB
Plaintext
48 lines
1.8 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: ConnectCore 8X Single Board Computer Express.
|
|
#@DESCRIPTION: Machine configuration for Digi's ConnectCore 8X SBC Express.
|
|
|
|
# Include the machine configuration for Digi's ConnectCore 8X module.
|
|
include conf/machine/include/ccimx8x.inc
|
|
|
|
# U-Boot configurations
|
|
# Last one is the default (the one the symlinks point at)
|
|
UBOOT_CONFIG ??= "ccimx8x_sbc_express512MB ccimx8x_sbc_express1GB ccimx8x_sbc_express2GB"
|
|
UBOOT_CONFIG[ccimx8x_sbc_express2GB] = "ccimx8x_sbc_express2GB_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
|
UBOOT_CONFIG[ccimx8x_sbc_express1GB] = "ccimx8x_sbc_express1GB_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
|
UBOOT_CONFIG[ccimx8x_sbc_express512MB] = "ccimx8x_sbc_express512MB_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
|
|
|
KERNEL_DEVICETREE ?= " \
|
|
digi/ccimx8x-sbc-express.dtb \
|
|
digi/_ov_som_bt_ccimx8x.dtbo \
|
|
digi/_ov_som_quad_ccimx8x.dtbo \
|
|
digi/_ov_som_wifi_ccimx8x.dtbo \
|
|
"
|
|
|
|
SERIAL_CONSOLES ?= "115200;ttyLP2"
|
|
|
|
# Bluetooth tty
|
|
BT_TTY ?= "ttyLP1"
|
|
|
|
# XBee
|
|
XBEE_RESET_N_GPIO ?= "gpio3@13"
|
|
XBEE_SLEEP_RQ_GPIO ?= "gpio3@16"
|
|
XBEE_TTY ?= "ttyLP0"
|
|
|
|
# Image FS types
|
|
IMAGE_FSTYPES ?= '${@bb.utils.contains("IMAGE_FEATURES", "read-only-rootfs", \
|
|
"boot.vfat tar.bz2 recovery.vfat squashfs", \
|
|
"boot.vfat ext4.gz sdcard.gz tar.bz2 recovery.vfat", d)}'
|
|
|
|
# Boot artifacts to be copied from the deploy dir to the installer ZIP
|
|
BOOTABLE_ARTIFACTS = " \
|
|
imx-boot-ccimx8x-sbc-express-B0-1GB_16bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-B0-1GB_32bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-B0-2GB_32bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-B0-512MB_16bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-C0-1GB_16bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-C0-1GB_32bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-C0-2GB_32bit.bin \
|
|
imx-boot-ccimx8x-sbc-express-C0-512MB_16bit.bin \
|
|
"
|