apalis-imx6.conf: change some assignments to soft default

Changed some machine variable assignments in apalis-imx6.conf
from hard assignments to soft defaults so they may be overridden
by user configuration (e.g. conf/local.conf).

Signed-off-by: Brandon Shibley <brandon.shibley@toradex.com>
This commit is contained in:
Brandon Shibley 2016-03-23 16:57:29 -07:00 committed by Otavio Salvador
parent 5d046079db
commit 7b1b30a2c8

View File

@ -9,13 +9,13 @@ include conf/machine/include/tune-cortexa9.inc
SOC_FAMILY = "mx6:mx6q" SOC_FAMILY = "mx6:mx6q"
PREFERRED_PROVIDER_virtual/kernel = "linux-toradex" PREFERRED_PROVIDER_virtual/kernel ?= "linux-toradex"
KERNEL_DEVICETREE = "imx6q-apalis-eval.dtb imx6q-apalis_v1_0-eval.dtb \ KERNEL_DEVICETREE += "imx6q-apalis-eval.dtb imx6q-apalis_v1_0-eval.dtb \
imx6q-apalis-ixora.dtb imx6q-apalis_v1_0-ixora.dtb" imx6q-apalis-ixora.dtb imx6q-apalis_v1_0-ixora.dtb"
KERNEL_IMAGETYPE = "uImage" KERNEL_IMAGETYPE = "uImage"
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"
# Modules in commercial and industrial temperature range have different RAM. # Modules in commercial and industrial temperature range have different RAM.
# Using apalis_imx6_it_defconfig builds an U-Boot working for both temperature # Using apalis_imx6_it_defconfig builds an U-Boot working for both temperature
# ranges, however, on commercially rated modules the RAM bandwidth is 5-10% # ranges, however, on commercially rated modules the RAM bandwidth is 5-10%
@ -25,6 +25,6 @@ UBOOT_CONFIG ??= "it"
UBOOT_CONFIG[com] = "apalis_imx6_defconfig" UBOOT_CONFIG[com] = "apalis_imx6_defconfig"
UBOOT_CONFIG[it] = "apalis_imx6_it_defconfig" UBOOT_CONFIG[it] = "apalis_imx6_it_defconfig"
SERIAL_CONSOLE = "115200 ttymxc0" SERIAL_CONSOLE ?= "115200 ttymxc0"
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"