diff options
author | Denys Dmytriyenko <denys@ti.com> | 2014-04-10 13:55:26 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-24 17:54:57 +0100 |
commit | a3a834cf9f35682655661a7c6ba66c1de3491320 (patch) | |
tree | 4460b27d3b934a0d7d33d8f98b1560bccaf54aa5 /meta/recipes-kernel/cryptodev | |
parent | e7aace7658fabe41839a3ec1b596bf28c6a4c02e (diff) | |
download | openembedded-core-contrib-a3a834cf9f35682655661a7c6ba66c1de3491320.tar.gz |
cryptodev-linux: create common .inc file to be shared by module and tests
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/cryptodev')
-rw-r--r-- | meta/recipes-kernel/cryptodev/cryptodev-linux_1.6.bb | 11 | ||||
-rw-r--r-- | meta/recipes-kernel/cryptodev/cryptodev_1.6.inc | 11 |
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 320716d6aac..43f58f311c3 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 @@ -SUMMARY = "A /dev/crypto device driver" -HOMEPAGE = "http://cryptodev-linux.org/" +require cryptodev_${PV}.inc -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -SRC_URI = "http://download.gna.org/cryptodev-linux/${BPN}-${PV}.tar.gz" - -SRC_URI[md5sum] = "eade38998313c25fd7934719cdf8a2ea" -SRC_URI[sha256sum] = "75f1425c8ea1f8cae523905a5a046a35092327a6152800b0b86efc4e56fb3e2f" +SUMMARY = "A /dev/crypto device driver header file" do_compile() { : 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 00000000000..946faac7d2d --- /dev/null +++ b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc @@ -0,0 +1,11 @@ +HOMEPAGE = "http://cryptodev-linux.org/" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +SRC_URI = "http://download.gna.org/cryptodev-linux/cryptodev-linux-${PV}.tar.gz" + +SRC_URI[md5sum] = "eade38998313c25fd7934719cdf8a2ea" +SRC_URI[sha256sum] = "75f1425c8ea1f8cae523905a5a046a35092327a6152800b0b86efc4e56fb3e2f" + +S = "${WORKDIR}/cryptodev-linux-${PV}" |