summaryrefslogtreecommitdiffstats
path: root/openembedded-layer
diff options
context:
space:
mode:
authorChunrong Guo <B40290@freescale.com>2015-01-19 11:50:14 +0800
committerOtavio Salvador <otavio@ossystems.com.br>2015-01-22 09:48:28 -0200
commitd2714161926759bb88ce9735f7c07eef300689a9 (patch)
tree0c3fa5fb04f9f6dc4aefd7b0afde826826010236 /openembedded-layer
parent05784cabd0ea071cab15241e7ab6d96982123697 (diff)
downloadmeta-fsl-arm-d2714161926759bb88ce9735f7c07eef300689a9.tar.gz
asf: fix scripts path
* fix the follow error: | cp: cannot stat `/poky/build/tmp/work/ls1021atwr-poky-linux-gnueabi/asf/git-r0/git/asfmodule/scripts': No such file or directory | WARNING: /poky/build/tmp/work/ls1021atwr-poky-linux-gnueabi/asf/git-r0/temp/run.do_install.31941:1 exit 1 from | cp -rf //poky/build/tmp/work/ls1021atwr-poky-linux-gnueabi/asf/git-r0/git/asfmodule/scripts /poky/build/tmp/work/ls1021atwr-poky-linux-gnueabi/asf/git-r0/image//usr/lib/asf/ | ERROR: Function failed: do_install Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'openembedded-layer')
-rw-r--r--openembedded-layer/recipes-kernel/asf/asf_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/openembedded-layer/recipes-kernel/asf/asf_git.bb b/openembedded-layer/recipes-kernel/asf/asf_git.bb
index 676c547..71eb46b 100644
--- a/openembedded-layer/recipes-kernel/asf/asf_git.bb
+++ b/openembedded-layer/recipes-kernel/asf/asf_git.bb
@@ -20,7 +20,7 @@ do_install(){
20 mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/asf 20 mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/asf
21 cp -rf ${S}/bin/full ${D}/lib/modules/${KERNEL_VERSION}/asf 21 cp -rf ${S}/bin/full ${D}/lib/modules/${KERNEL_VERSION}/asf
22 cp -rf ${S}/bin/min ${D}/lib/modules/${KERNEL_VERSION}/asf 22 cp -rf ${S}/bin/min ${D}/lib/modules/${KERNEL_VERSION}/asf
23 cp -rf ${S}/scripts ${D}/${libexecdir}/ 23 cp -rf ${S}/../scripts ${D}/${libexecdir}/
24} 24}
25 25
26FILES_${PN} += "${libexecdir} /lib/modules/${KERNEL_VERSION}/asf" 26FILES_${PN} += "${libexecdir} /lib/modules/${KERNEL_VERSION}/asf"