diff options
author | Matthew McClintock <msm@freescale.com> | 2012-10-02 14:23:42 -0500 |
---|---|---|
committer | Matthew McClintock <msm@freescale.com> | 2012-10-02 14:23:54 -0500 |
commit | c0bb5949ce44381639b9adf6980ee88fa6c41737 (patch) | |
tree | 9bd80a2d6d9da0f41df47eaa47290962078d2383 | |
parent | b29521263ad7d5b0549f7904485d743a899a8c41 (diff) | |
download | meta-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.inc | 12 |
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 @@ | |||
1 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" | 1 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" |
2 | 2 | ||
3 | |||
4 | |||
3 | PV = "3.0.34" | 5 | PV = "3.0.34" |
4 | PR = "r7" | 6 | PR = "r8" |
5 | 7 | ||
6 | SRCREV = "058c67be272af9ab95b88c941f31fb3eda05a4d3" | 8 | SRCREV = "058c67be272af9ab95b88c941f31fb3eda05a4d3" |
7 | SRC_URI = "git://git.freescale.com/ppc/sdk/linux.git \ | 9 | SRC_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 | } |