meta-digi-arm: set u-boot 2013.01 as preferred version

This will be the preferred version for ccardimx28. Then use platform
override to set the one for ccimx5 and ccimx6.

Not having a platform override in the machine config file allows to do
a simple version override in the project's local.conf file with:

PREFERRED_VERSION_u-boot-dey = "2009.08"

Otherwise, if we use a platform override in the machine config that
takes precedence over a normal override in the project's local.conf
and we would have needed something like:

PREFERRED_VERSION_u-boot-dey_ccardimx28 ?= "2013.01"

in the project's config.

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2014-08-04 18:29:37 +02:00
parent 98c8a75a2f
commit 21d23c99d1
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@ PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
# Digi BSP default versions # Digi BSP default versions
PREFERRED_VERSION_linux-dey ?= "3.10" PREFERRED_VERSION_linux-dey ?= "3.10"
PREFERRED_VERSION_linux-dey_ccimx5 ?= "2.6.35.14" PREFERRED_VERSION_linux-dey_ccimx5 ?= "2.6.35.14"
PREFERRED_VERSION_u-boot-dey ?= "2013.04" PREFERRED_VERSION_u-boot-dey ?= "2013.01"
PREFERRED_VERSION_u-boot-dey_ccimx5 ?= "2009.08" PREFERRED_VERSION_u-boot-dey_ccimx5 ?= "2009.08"
PREFERRED_VERSION_u-boot-dey_ccardimx28 ?= "2013.01" PREFERRED_VERSION_u-boot-dey_ccimx6 ?= "2013.04"
# Help variables used in recipes # Help variables used in recipes
HAVE_WIFI = "${@base_contains('MACHINE_FEATURES', 'wifi', '1', '', d)}" HAVE_WIFI = "${@base_contains('MACHINE_FEATURES', 'wifi', '1', '', d)}"