summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2012-10-02 14:23:42 -0500
committerMatthew McClintock <msm@freescale.com>2012-10-02 14:23:54 -0500
commitc0bb5949ce44381639b9adf6980ee88fa6c41737 (patch)
tree9bd80a2d6d9da0f41df47eaa47290962078d2383
parentb29521263ad7d5b0549f7904485d743a899a8c41 (diff)
downloadmeta-fsl-ppc-c0bb5949ce44381639b9adf6980ee88fa6c41737.tar.gz
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 <msm@freescale.com>
-rw-r--r--recipes-kernel/linux/linux-qoriq-sdk.inc12
1 files changed, 11 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux-qoriq-sdk.inc b/recipes-kernel/linux/linux-qoriq-sdk.inc
index f97a8c0..6cd9cc4 100644
--- a/recipes-kernel/linux/linux-qoriq-sdk.inc
+++ b/recipes-kernel/linux/linux-qoriq-sdk.inc
@@ -1,7 +1,9 @@
1LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" 1LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
2 2
3
4
3PV = "3.0.34" 5PV = "3.0.34"
4PR = "r7" 6PR = "r8"
5 7
6SRCREV = "058c67be272af9ab95b88c941f31fb3eda05a4d3" 8SRCREV = "058c67be272af9ab95b88c941f31fb3eda05a4d3"
7SRC_URI = "git://git.freescale.com/ppc/sdk/linux.git \ 9SRC_URI = "git://git.freescale.com/ppc/sdk/linux.git \
@@ -27,4 +29,12 @@ python () {
27 if promote_kernel == "1": 29 if promote_kernel == "1":
28 d.setVar('KERNEL_CC_append', ' -m64') 30 d.setVar('KERNEL_CC_append', ' -m64')
29 d.setVar('KERNEL_LD_append', ' -melf64ppc') 31 d.setVar('KERNEL_LD_append', ' -melf64ppc')
32
33 error_qa = d.getVar('ERROR_QA', True)
34 if 'arch' in error_qa:
35 d.setVar('ERROR_QA', error_qa.replace(' arch', ''))
36
37 all_qa = d.getVar('ALL_QA', True)
38 if 'arch' in all_qa:
39 d.setVar('ALL_QA', all_qa.replace(' arch', ''))
30} 40}