diff options
author | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-01-07 17:55:07 +0800 |
---|---|---|
committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-01-08 18:21:55 +0800 |
commit | 8362551c5d623b14825ad16b6f5d9a6c9ff6a675 (patch) | |
tree | 6dc36ab0bfd644ce9e17f468066245f9cc9e19f1 | |
parent | 9e5ff5bf92a7888018613aad03ecba76d1434599 (diff) | |
download | meta-freescale-8362551c5d623b14825ad16b6f5d9a6c9ff6a675.tar.gz |
asf: update revision to 16eb472
This update to fsl sdk v1.7 release. The detailed changes
can be found at:
http://git.freescale.com/git/cgit.cgi/ppc/sdk/asf.git/
Other changes to sync with meta-fsl-arm:
* install kernel modules to ${D}/lib/modules/${KERNEL_VERSION}/asf
* install scripts to ${D}/${libexecdir}/
* remove dependency on virtual/kernel as it inherit module.bbclass
Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
-rw-r--r-- | meta-fsl-ppc/recipes-kernel/asf/asf_git.bb | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb index 9597257c..8070f5a2 100644 --- a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb +++ b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb | |||
@@ -4,10 +4,8 @@ LICENSE = "GPLv2 & GPLv2+ & BSD" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287" |
5 | 5 | ||
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 = "f107bc7dac7fe74d765dc09f66dca84951921d2c" | 7 | SRCREV = "16eb472d6b2b34c8b605a86c469611bc8ddec1c9" |
8 | 8 | ||
9 | DEPENDS="virtual/kernel" | ||
10 | RDEPENDS_${PN} += "ipsec-tools" | ||
11 | 9 | ||
12 | inherit module qoriq_build_64bit_kernel | 10 | inherit module qoriq_build_64bit_kernel |
13 | 11 | ||
@@ -16,12 +14,16 @@ S = "${WORKDIR}/git/asfmodule" | |||
16 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" | 14 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" |
17 | export KERNEL_PATH = "${STAGING_KERNEL_DIR}" | 15 | export KERNEL_PATH = "${STAGING_KERNEL_DIR}" |
18 | 16 | ||
17 | INHIBIT_PACKAGE_STRIP = "1" | ||
18 | |||
19 | do_install(){ | 19 | do_install(){ |
20 | mkdir -p ${D}/usr/driver/asf | 20 | install -d ${D}/${libexecdir} |
21 | cp -rf ${S}/bin/full ${D}/usr/driver/asf | 21 | install -d ${D}/lib/modules/${KERNEL_VERSION}/asf |
22 | cp -rf ${S}/bin/min ${D}/usr/driver/asf | 22 | cp -rf ${S}/bin/full ${D}/lib/modules/${KERNEL_VERSION}/asf |
23 | cp -rf ${S}/../scripts ${D}/usr/driver/asf/. | 23 | cp -rf ${S}/bin/min ${D}/lib/modules/${KERNEL_VERSION}/asf |
24 | cp -rf ${S}/../scripts ${D}/${libexecdir}/ | ||
24 | } | 25 | } |
25 | 26 | ||
26 | FILES_${PN} += "/usr/driver/asf" | 27 | FILES_${PN} += "${libexecdir} /lib/modules/${KERNEL_VERSION}/asf" |
27 | INHIBIT_PACKAGE_STRIP = "1" | 28 | RDEPENDS_${PN} += "ipsec-tools" |
29 | |||