From: Chunrong Guo Date: Mon, 19 Jan 2015 03:50:14 +0000 (+0800) Subject: asf: fix scripts path X-Git-Tag: 2.1~701 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1a3e123b7ea35d31f4122570c1907decfb934c67;p=meta-freescale.git 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 Signed-off-by: Otavio Salvador --- diff --git a/meta-fsl-arm/openembedded-layer/recipes-kernel/asf/asf_git.bb b/meta-fsl-arm/openembedded-layer/recipes-kernel/asf/asf_git.bb index 676c5479..71eb46b7 100644 --- a/meta-fsl-arm/openembedded-layer/recipes-kernel/asf/asf_git.bb +++ b/meta-fsl-arm/openembedded-layer/recipes-kernel/asf/asf_git.bb @@ -20,7 +20,7 @@ do_install(){ mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/asf cp -rf ${S}/bin/full ${D}/lib/modules/${KERNEL_VERSION}/asf cp -rf ${S}/bin/min ${D}/lib/modules/${KERNEL_VERSION}/asf - cp -rf ${S}/scripts ${D}/${libexecdir}/ + cp -rf ${S}/../scripts ${D}/${libexecdir}/ } FILES_${PN} += "${libexecdir} /lib/modules/${KERNEL_VERSION}/asf"