blob: 9597257c3e32a684efc043d2ac991802f42210cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DESCRIPTION = "Non-DPAA software Application Specific Fast-path"
SECTION = "asf"
LICENSE = "GPLv2 & GPLv2+ & BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287"
SRC_URI = "git://git.freescale.com/ppc/sdk/asf.git;nobranch=1"
SRCREV = "f107bc7dac7fe74d765dc09f66dca84951921d2c"
DEPENDS="virtual/kernel"
RDEPENDS_${PN} += "ipsec-tools"
inherit module qoriq_build_64bit_kernel
S = "${WORKDIR}/git/asfmodule"
EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
export 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"
|