75 lines
2.6 KiB
C++
75 lines
2.6 KiB
C++
# Digi's i.MX platforms common settings
|
|
include conf/machine/include/digi-defaults.inc
|
|
include conf/machine/include/soc-family.inc
|
|
|
|
XSERVER_DRIVER = "xf86-video-fbdev"
|
|
XSERVER_DRIVER_mx6 = "xf86-video-imxfb-vivante"
|
|
XSERVER = "xserver-xorg \
|
|
xf86-input-evdev \
|
|
${XSERVER_DRIVER}"
|
|
|
|
# Ship kernel modules
|
|
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
|
|
|
|
# Tunes for hard/soft float-point selection. Note that we allow building for
|
|
# thumb support giving distros the chance to enable thumb by setting
|
|
# ARM_INSTRUCTION_SET = "thumb"
|
|
#
|
|
# handled by software
|
|
# DEFAULTTUNE_mx6 ?= "cortexa9t-neon"
|
|
# handled by hardware
|
|
DEFAULTTUNE_mx6 ?= "cortexa9thf-neon"
|
|
|
|
# Sub-architecture support
|
|
MACHINE_SOCARCH_SUFFIX ?= ""
|
|
MACHINE_SOCARCH_SUFFIX_mx6q = "-mx6qdl"
|
|
MACHINE_SOCARCH_SUFFIX_mx6dl = "-mx6qdl"
|
|
|
|
MACHINE_ARCH_FILTER = "virtual/kernel imx-vpu"
|
|
MACHINE_SOCARCH_FILTER_append_mx6 = " libfslcodec libfslvpuwrap libfslparser"
|
|
MACHINE_SOCARCH_FILTER_append_mx6 = " virtual/libopenvg virtual/libgles1 virtual/libgles2 virtual/egl virtual/mesa virtual/libgl virtual/libg2d"
|
|
|
|
INHERIT += "fsl-dynamic-packagearch"
|
|
|
|
# Extra udev rules
|
|
MACHINE_EXTRA_RRECOMMENDS += "udev-extraconf udev-rules-imx"
|
|
|
|
# GStreamer 1.0 plugins
|
|
MACHINE_GSTREAMER_1_0_PLUGIN ?= ""
|
|
MACHINE_GSTREAMER_1_0_PLUGIN_mx6q ?= "gst1.0-fsl-plugin gst1.0-fsl-plugin-gplay gst1.0-fsl-plugin-grecorder"
|
|
MACHINE_GSTREAMER_1_0_PLUGIN_mx6dl ?= "gst1.0-fsl-plugin gst1.0-fsl-plugin-gplay gst1.0-fsl-plugin-grecorder"
|
|
|
|
# Determines if the SoC has support for Vivante kernel driver
|
|
SOC_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT = "0"
|
|
SOC_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT_mx6q = "1"
|
|
SOC_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT_mx6dl = "1"
|
|
|
|
# Handle Vivante kernel driver setting:
|
|
# 0 - machine does not have Vivante GPU driver support
|
|
# 1 - machine has Vivante GPU driver support
|
|
MACHINE_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT ?= "${SOC_HAS_VIVANTE_KERNEL_DRIVER_SUPPORT}"
|
|
|
|
# mx6 GPU libraries
|
|
PREFERRED_PROVIDER_virtual/egl_mx6q ?= "imx-gpu-viv"
|
|
PREFERRED_PROVIDER_virtual/egl_mx6dl ?= "imx-gpu-viv"
|
|
|
|
PREFERRED_PROVIDER_virtual/libgles1_mx6q ?= "imx-gpu-viv"
|
|
PREFERRED_PROVIDER_virtual/libgles1_mx6dl ?= "imx-gpu-viv"
|
|
|
|
PREFERRED_PROVIDER_virtual/libgles2_mx6q ?= "imx-gpu-viv"
|
|
PREFERRED_PROVIDER_virtual/libgles2_mx6dl ?= "imx-gpu-viv"
|
|
|
|
PREFERRED_PROVIDER_virtual/libgl_mx6q ?= "imx-gpu-viv"
|
|
PREFERRED_PROVIDER_virtual/libgl_mx6dl ?= "imx-gpu-viv"
|
|
|
|
PREFERRED_PROVIDER_virtual/libg2d_mx6 ?= "imx-gpu-viv"
|
|
|
|
EXTRA_IMAGEDEPENDS = "u-boot"
|
|
|
|
KERNEL_IMAGETYPE = "uImage"
|
|
|
|
MACHINE_FEATURES = "usbgadget usbhost vfat alsa touchscreen"
|
|
|
|
# Add the ability to specify _imx machines
|
|
MACHINEOVERRIDES =. "imx:"
|