From: Matthew McClintock Date: Tue, 2 Oct 2012 19:23:42 +0000 (-0500) Subject: linux-qoriq-sdk.inc: skip arch QA since kernel might not match for 64-bit kernels... X-Git-Tag: 2.1~534^2~380 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=833992ff473ed58f80b3060cb10ddc0441df82b2;p=meta-freescale.git linux-qoriq-sdk.inc: skip arch QA since kernel might not match for 64-bit kernels on 32-bit rfs Signed-off-by: Matthew McClintock --- diff --git a/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc b/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc index f97a8c0c..6cd9cc41 100644 --- a/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc +++ b/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc @@ -1,7 +1,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" + + PV = "3.0.34" -PR = "r7" +PR = "r8" SRCREV = "058c67be272af9ab95b88c941f31fb3eda05a4d3" SRC_URI = "git://git.freescale.com/ppc/sdk/linux.git \ @@ -27,4 +29,12 @@ python () { if promote_kernel == "1": d.setVar('KERNEL_CC_append', ' -m64') d.setVar('KERNEL_LD_append', ' -melf64ppc') + + error_qa = d.getVar('ERROR_QA', True) + if 'arch' in error_qa: + d.setVar('ERROR_QA', error_qa.replace(' arch', '')) + + all_qa = d.getVar('ALL_QA', True) + if 'arch' in all_qa: + d.setVar('ALL_QA', all_qa.replace(' arch', '')) }