]> code.ossystems Code Review - meta-freescale.git/commitdiff
asf: add recipe
authorZhenhua Luo <zhenhua.luo@freescale.com>
Thu, 27 Jun 2013 09:25:09 +0000 (09:25 +0000)
committerZhenhua Luo <zhenhua.luo@freescale.com>
Fri, 28 Jun 2013 02:54:23 +0000 (10:54 +0800)
asf is software Application Specific Fast-path for Freescale non-dpaa targets.

Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
meta-fsl-ppc/recipes-kernel/asf/asf_git.bb [new file with mode: 0644]

diff --git a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb
new file mode 100644 (file)
index 0000000..6a6917f
--- /dev/null
@@ -0,0 +1,25 @@
+DESCRIPTION = "Non-DPAA software Application Specific Fast-path"
+SECTION = "asf"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=9960b017720861b8c50c8c08723e57aa"
+
+SRC_URI = "git://git.freescale.com/ppc/sdk/asf.git"
+SRCREV = "0b80c1df6a7490486d5106b28103598906793da0"
+
+DEPENDS="virtual/kernel"
+
+inherit module
+
+S = "${WORKDIR}/git/asfmodule"
+
+EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} KERNEL_PATH=${STAGING_KERNEL_DIR}"
+
+do_install(){
+       mkdir -p ${D}/usr/driver/asf
+       cp -rf ${S}/bin/full ${D}/usr/driver/asf
+       cp -rf ${S}/bin/min  ${D}/usr/driver/asf
+       cp -rf ${S}/../scripts ${D}/usr/driver/asf/.
+}
+
+FILES_${PN} += "/usr/driver/asf"
+INHIBIT_PACKAGE_STRIP = "1"