| Submitter | Mike Westerhof |
|---|---|
| Date | Jan. 23, 2011, 7:35 p.m. |
| Message ID | <4D3C8312.2040405@mwester.net> |
| Download | mbox | patch |
| Permalink | /patch/343/ |
| State | Accepted |
| Headers | show |
Comments
On Sun, Jan 23, 2011 at 11:35 AM, Mike Westerhof <mike@mwester.net> wrote: > Updates cryptsetup recipe to version 1.1.3, the most recent version that builds > with the current version of automake in OE. Note that we need to keep the old > 1.0.5 recipe, even though it is not fetchable any longer, because the license > has changed. > > Signed-off-by: Mike Westerhof <mike@mwester.net> Acked-by: Khem Raj <raj.khem@gmail.com> > --- > > diff --git a/recipes/cryptsetup/cryptsetup_1.1.3.bb b/recipes/cryptsetup/cryptsetup_1.1.3.bb > new file mode 100644 > index 0000000..54fd96e > --- /dev/null > +++ b/recipes/cryptsetup/cryptsetup_1.1.3.bb > @@ -0,0 +1,18 @@ > +DESCRIPTION = "Setup virtual encryption devices under dm-crypt Linux" > +HOMEPAGE = "http://code.google.com/p/cryptsetup/" > +SECTION = "console" > +LICENSE = "GPLv2" > +DEPENDS = "util-linux-ng device-mapper libgcrypt popt" > +RRECOMMENDS_${PN} = "kernel-module-aes \ > + kernel-module-dm-crypt \ > + kernel-module-md5 \ > + kernel-module-cbc \ > + kernel-module-sha256 \ > + " > +PR = "r0" > + > +SRC_URI = "http://cryptsetup.googlecode.com/files/cryptsetup-${PV}.tar.bz2" > +SRC_URI[md5sum] = "318a64470861ea5b92a52f2014f1e7c1" > +SRC_URI[sha256sum] = "9c8e68a272f6d9cfb6cd65cc0743f4c44a2096c61f74e0602bf40208b5e69c0a" > + > +inherit autotools > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel >
Patch
diff --git a/recipes/cryptsetup/cryptsetup_1.1.3.bb b/recipes/cryptsetup/cryptsetup_1.1.3.bb new file mode 100644 index 0000000..54fd96e --- /dev/null +++ b/recipes/cryptsetup/cryptsetup_1.1.3.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Setup virtual encryption devices under dm-crypt Linux" +HOMEPAGE = "http://code.google.com/p/cryptsetup/" +SECTION = "console" +LICENSE = "GPLv2" +DEPENDS = "util-linux-ng device-mapper libgcrypt popt" +RRECOMMENDS_${PN} = "kernel-module-aes \ + kernel-module-dm-crypt \ + kernel-module-md5 \ + kernel-module-cbc \ + kernel-module-sha256 \ + " +PR = "r0" + +SRC_URI = "http://cryptsetup.googlecode.com/files/cryptsetup-${PV}.tar.bz2" +SRC_URI[md5sum] = "318a64470861ea5b92a52f2014f1e7c1" +SRC_URI[sha256sum] = "9c8e68a272f6d9cfb6cd65cc0743f4c44a2096c61f74e0602bf40208b5e69c0a" + +inherit autotools
Updates cryptsetup recipe to version 1.1.3, the most recent version that builds with the current version of automake in OE. Note that we need to keep the old 1.0.5 recipe, even though it is not fetchable any longer, because the license has changed. Signed-off-by: Mike Westerhof <mike@mwester.net> ---