]> code.ossystems Code Review - meta-freescale.git/commitdiff
linux-qoriq-sdk.inc: skip arch QA since kernel might not match for 64-bit kernels...
authorMatthew McClintock <msm@freescale.com>
Tue, 2 Oct 2012 19:23:42 +0000 (14:23 -0500)
committerMatthew McClintock <msm@freescale.com>
Tue, 2 Oct 2012 19:23:54 +0000 (14:23 -0500)
Signed-off-by: Matthew McClintock <msm@freescale.com>
meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc

index f97a8c0c12aa7038de50129faf17d81f8e9bf728..6cd9cc41446c094ceae55b67d4f88818495b4e46 100644 (file)
@@ -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', ''))
 }