summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2014-04-10 13:55:26 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-29 13:43:30 +0100
commit1f80e7f675a359904e58a75170b4a6f52ed9d875 (patch)
tree3ed170b7e74573fe7b17d7803a0f1cce41137954 /meta
parent6a4a66aabb82867306900118237c6f7f7cfe12ef (diff)
downloadpoky-1f80e7f675a359904e58a75170b4a6f52ed9d875.tar.gz
cryptodev-linux: create common .inc file to be shared by module and tests
(From OE-Core rev: a3a834cf9f35682655661a7c6ba66c1de3491320) (From OE-Core rev: d069595deb434cb6a0e8caf6f156cb20630dff97) Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/cryptodev/cryptodev-linux_1.6.bb11
-rw-r--r--meta/recipes-kernel/cryptodev/cryptodev_1.6.inc11
2 files changed, 13 insertions, 9 deletions
diff --git a/meta/recipes-kernel/cryptodev/cryptodev-linux_1.6.bb b/meta/recipes-kernel/cryptodev/cryptodev-linux_1.6.bb
index 320716d6aa..43f58f311c 100644
--- a/meta/recipes-kernel/cryptodev/cryptodev-linux_1.6.bb
+++ b/meta/recipes-kernel/cryptodev/cryptodev-linux_1.6.bb
@@ -1,13 +1,6 @@
1SUMMARY = "A /dev/crypto device driver" 1require cryptodev_${PV}.inc
2HOMEPAGE = "http://cryptodev-linux.org/"
3 2
4LICENSE = "GPLv2" 3SUMMARY = "A /dev/crypto device driver header file"
5LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
6
7SRC_URI = "http://download.gna.org/cryptodev-linux/${BPN}-${PV}.tar.gz"
8
9SRC_URI[md5sum] = "eade38998313c25fd7934719cdf8a2ea"
10SRC_URI[sha256sum] = "75f1425c8ea1f8cae523905a5a046a35092327a6152800b0b86efc4e56fb3e2f"
11 4
12do_compile() { 5do_compile() {
13 : 6 :
diff --git a/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc
new file mode 100644
index 0000000000..946faac7d2
--- /dev/null
+++ b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc
@@ -0,0 +1,11 @@
1HOMEPAGE = "http://cryptodev-linux.org/"
2
3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
5
6SRC_URI = "http://download.gna.org/cryptodev-linux/cryptodev-linux-${PV}.tar.gz"
7
8SRC_URI[md5sum] = "eade38998313c25fd7934719cdf8a2ea"
9SRC_URI[sha256sum] = "75f1425c8ea1f8cae523905a5a046a35092327a6152800b0b86efc4e56fb3e2f"
10
11S = "${WORKDIR}/cryptodev-linux-${PV}"