summaryrefslogtreecommitdiffstats
path: root/conf/machine/include/fsl-default-providers.inc
Commit message (Collapse)AuthorAgeFilesLines
* fsl-default-providers.inc: Allow easy override of default U-BootOtavio Salvador2014-01-141-2/+2
| | | | | Change-Id: I2cd416548d92d27018496000f7c0790e1b1afeb6 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fsl-default-providers.inc: Make virtual/kernel assigment delayedOtavio Salvador2013-11-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In 01851da (machine/*: Allow kernel provider override) the assigment of preferred provider for virtual/kernel has been changed to a weak assignment. This works for most of cases but has caused a regression in some machines. When a machine includes the imx-base.inc file, the assignment is done and the intended setting of the machine does not take effect. For example, in the below code fragment: ,----[ Wandboard board configuration fragment ] | include conf/machine/include/imx-base.inc | ... | PREFERRED_PROVIDER_virtual/kernel ?= "linux-wandboard" `---- the virtual/kernel provider would be 'linux-imx' as, at the time of imx-base.inc inclusion, it was undefined. The expected behaviour would be to use 'linux-imx' /only/ when no setting has been done. The ??= operator solves this as it is used /only/ if no assignment is done to the virtual/kernel provider in the end of the parsing. So it gives the expected behaviour. Change-Id: Iab73dcff8bef7f2df1064a0d5d04fd506a4c3144 Reported-by: Alfonso Tamés <alfonso@mantic.mx> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* machines: Add PREFERRED_PROVIDER for virtual/bootloaderKhem Raj2013-10-181-0/+1
| | | | | | | | | | | virtual/bootloader is a commonly used target. This patch adds it for meta-fsl-arm machines. Other BSP layers have this provider and when using a mutli-machine distro setup bitbake virtual/bootloader builds a wrong u-boot for fsl machines Signed-off-by: Khem Raj <raj.khem@gmail.com>
* linux-libc-headers: Use Yocto's default to avoid same arch rebuildsOtavio Salvador2013-02-171-1/+0
| | | | | | | | | | This avoids full rebuild in case of compatible machine changes (e.g i.MX53 and i.MX6) and fixes the build failures seen in autobuilder. [YOCTO #3667] Change-Id: I4c46499d00e95738409ee39a659e93095dd7f207 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* fsl-default-providers.inc: u-boot recipe was renamed to u-boot-fslAndrei Gherzan2012-12-161-1/+1
| | | | Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
* Move fsl-default*.inc from distro to machineAndrei Gherzan2012-09-181-0/+6
It makes no sense to have distro related configurations in a BSP layer. So let's have these common parts (provides, version etc) in machine directory instead. Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>