diff options
author | Chunrong Guo <B40290@freescale.com> | 2015-04-14 17:25:18 +0800 |
---|---|---|
committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-04-24 10:17:12 +0800 |
commit | 5ba8351d4d29cc2cc99b9f2ca28971b1c3e4cbc5 (patch) | |
tree | 9b79b420deb186206c8c4f8394d44ae871682ad3 /meta-fsl-ppc/recipes-kernel | |
parent | 70e804bd4ed3f5dd6d501c664bf3a63dad59eefa (diff) | |
download | meta-freescale-5ba8351d4d29cc2cc99b9f2ca28971b1c3e4cbc5.tar.gz |
asf: fix configure error
fix the following error:
|make: *** No rule to make target `/poky/build/tmp/work-shared/p4080ds/kernel-source/.config
(From OE-Core rev: 6a1ff0e7eacef595738f2fed086986fd622ec32a)
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Diffstat (limited to 'meta-fsl-ppc/recipes-kernel')
-rw-r--r-- | meta-fsl-ppc/recipes-kernel/asf/asf_git.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb index 8070f5a2..b3379c1a 100644 --- a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb +++ b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb | |||
@@ -6,16 +6,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287" | |||
6 | SRC_URI = "git://git.freescale.com/ppc/sdk/asf.git;nobranch=1" | 6 | SRC_URI = "git://git.freescale.com/ppc/sdk/asf.git;nobranch=1" |
7 | SRCREV = "16eb472d6b2b34c8b605a86c469611bc8ddec1c9" | 7 | SRCREV = "16eb472d6b2b34c8b605a86c469611bc8ddec1c9" |
8 | 8 | ||
9 | |||
10 | inherit module qoriq_build_64bit_kernel | 9 | inherit module qoriq_build_64bit_kernel |
11 | 10 | do_configure[depends] += "virtual/kernel:do_shared_workdir" | |
12 | S = "${WORKDIR}/git/asfmodule" | 11 | S = "${WORKDIR}/git/asfmodule" |
13 | 12 | ||
14 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" | 13 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" |
15 | export KERNEL_PATH = "${STAGING_KERNEL_DIR}" | 14 | export KERNEL_PATH = "${STAGING_KERNEL_DIR}" |
16 | |||
17 | INHIBIT_PACKAGE_STRIP = "1" | 15 | INHIBIT_PACKAGE_STRIP = "1" |
18 | 16 | ||
17 | do_configure_append (){ | ||
18 | cp ${STAGING_KERNEL_BUILDDIR}/.config ${STAGING_KERNEL_DIR}/ | ||
19 | } | ||
20 | |||
19 | do_install(){ | 21 | do_install(){ |
20 | install -d ${D}/${libexecdir} | 22 | install -d ${D}/${libexecdir} |
21 | install -d ${D}/lib/modules/${KERNEL_VERSION}/asf | 23 | install -d ${D}/lib/modules/${KERNEL_VERSION}/asf |
@@ -26,4 +28,3 @@ do_install(){ | |||
26 | 28 | ||
27 | FILES_${PN} += "${libexecdir} /lib/modules/${KERNEL_VERSION}/asf" | 29 | FILES_${PN} += "${libexecdir} /lib/modules/${KERNEL_VERSION}/asf" |
28 | RDEPENDS_${PN} += "ipsec-tools" | 30 | RDEPENDS_${PN} += "ipsec-tools" |
29 | |||