summaryrefslogtreecommitdiffstats
path: root/classes
Commit message (Collapse)AuthorAgeFilesLines
* classes/u-boot: Update getVar syntaxRichard Purdie2016-02-181-7/+7
| | | | | | | | | | | | | | This runs: sed -e 's:\(\.getVar([^,()]*\)):\1, False):g' -i `grep -ril getVar *` on the layer to update the getVar usages without an expand parameter, This ensures the layer continues to work with bitbake master. There is no functionality change although some of these sites may benefit from expand=True. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* fsl-u-boot-localversion.bbclass: import from meta-fsl-armTing Liu2015-12-281-0/+27
| | | | | | Prepare for fsl-arm/ppc merge. Signed-off-by: Ting Liu <ting.liu@freescale.com>
* use 64b toolchain binaries to build e6500 kernelTing Liu2015-07-201-3/+7
| | | | | | | | | | | | | | | | | | e6500 only supports 64b kernel. When building 64b kernel + 32b rootfs, kernel build uses a hack previously, ie. append '-m64' and '-elf64ppc' to 32b toolchain binaries. This fails if kernel use some builtin functions: | LINK vmlinux | LD vmlinux.o | powerpc-fsl-linux-ld.bfd: Relocatable linking with relocations from | format elf32-powerpc (.../4.9.2/libgcc.a(_popcountdi2.o)) to format | elf64-powerpc (vmlinux.o) is not supported | make: *** [vmlinux] Error 1 | ERROR: oe_runmake failed modify KERNEL_{CC,LD,AR} to use 64b toolchain binaries to avoid error. Signed-off-by: Ting Liu <ting.liu@freescale.com> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
* remove duplicate check for e6500 64b kernel buildZongchun Yu2015-01-081-4/+0
| | | | | | | | | | | e6500 is a specific core which only support 64bit kernel, no matter rootfs is 32b/64b. qoriq_build_64bit_kernel.bbclass was added to do this. BUILD_64BIT_KERNEL is only set for e6500. It is duplicate to check core and BUILD_64BIT_KERNEL at the same time. remove one. Signed-off-by: Zongchun Yu <Zongchun.Yu@freescale.com>
* qoriq_build_64bit_kernel.bbclass: add for ppce6500Ting Liu2014-07-111-0/+18
ppce6500 is a specific core which only support 64bit kernel, introduce qoriq_build_64bit_kernel.bbclass to do this Signed-off-by: Ting Liu <b28495@freescale.com>