Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [PATCH][for-danny 0/2] cryptsetup
@ 2013-02-04 14:44 Martin Jansa
  2013-02-04 14:44 ` [PATCH][for-danny 1/2] lvm2: upgrade to 2.02.97 which is compatible with newer udev Martin Jansa
  2013-02-04 14:44 ` [PATCH][for-danny 2/2] cryptsetup: import from oe-classic Martin Jansa
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Jansa @ 2013-02-04 14:44 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 23faa51a1080d17ad491a187c7a9150f2f578ce1:

  libdbi: import from OE-classic and update to latest 0.8.4 (2013-02-01 11:02:59 +0100)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib jansa/for-danny
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/for-danny

Martin Jansa (2):
  lvm2: upgrade to 2.02.97 which is compatible with newer udev
  cryptsetup: import from oe-classic

 meta-oe/recipes-support/cryptsetup/cryptsetup_1.1.3.bb | 18 ++++++++++++++++++
 meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb           |  7 -------
 meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb           |  6 ++++++
 3 files changed, 24 insertions(+), 7 deletions(-)
 create mode 100644 meta-oe/recipes-support/cryptsetup/cryptsetup_1.1.3.bb
 delete mode 100644 meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb
 create mode 100644 meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb

-- 
1.8.1.2




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH][for-danny 1/2] lvm2: upgrade to 2.02.97 which is compatible with newer udev
  2013-02-04 14:44 [PATCH][for-danny 0/2] cryptsetup Martin Jansa
@ 2013-02-04 14:44 ` Martin Jansa
  2013-02-04 14:44 ` [PATCH][for-danny 2/2] cryptsetup: import from oe-classic Martin Jansa
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2013-02-04 14:44 UTC (permalink / raw)
  To: openembedded-devel

* older versions are using symbols removed in newer udev
  | dmsetup.c:985: error: undefined reference to 'udev_get_dev_path'
  | collect2: error: ld returned 1 exit status
  | make[1]: *** [dmsetup] Error 1
  | make[1]: Leaving directory
  `/OE/jansa-test/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/lvm2/2.02.85-r2.0/LVM2.2.02.85/tools'

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb | 7 -------
 meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb | 6 ++++++
 2 files changed, 6 insertions(+), 7 deletions(-)
 delete mode 100644 meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb
 create mode 100644 meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb

diff --git a/meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb b/meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb
deleted file mode 100644
index b2a4ff3..0000000
--- a/meta-oe/recipes-support/lvm2/lvm2_2.02.85.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require lvm2.inc
-
-PR = "${INC_PR}.0"
-
-SRC_URI[md5sum] = "91785ca438e5ce679dd3a386b183d552"
-SRC_URI[sha256sum] = "e5c2b0d76e7b1df7630e211734eb09697d66ab879b17eb19545cb77272813eb7"
-
diff --git a/meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb b/meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb
new file mode 100644
index 0000000..2de17cf
--- /dev/null
+++ b/meta-oe/recipes-support/lvm2/lvm2_2.02.97.bb
@@ -0,0 +1,6 @@
+require lvm2.inc
+
+PR = "${INC_PR}.0"
+
+SRC_URI[md5sum] = "d18bd01334309db1c422b9bf6b181057"
+SRC_URI[sha256sum] = "edda82012e8a9e1f0b00ba5a331468d3e0201992be14c0dbea71bf564a51fc2b"
-- 
1.8.1.2




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH][for-danny 2/2] cryptsetup: import from oe-classic
  2013-02-04 14:44 [PATCH][for-danny 0/2] cryptsetup Martin Jansa
  2013-02-04 14:44 ` [PATCH][for-danny 1/2] lvm2: upgrade to 2.02.97 which is compatible with newer udev Martin Jansa
@ 2013-02-04 14:44 ` Martin Jansa
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2013-02-04 14:44 UTC (permalink / raw)
  To: openembedded-devel

* add LIC_FILES_CHKSUM
* depend on util-linux (renamed from util-linux-ng)
* depend on lvm2 instead of device-mapper
* inherit gettext

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/cryptsetup/cryptsetup_1.1.3.bb | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-oe/recipes-support/cryptsetup/cryptsetup_1.1.3.bb

diff --git a/meta-oe/recipes-support/cryptsetup/cryptsetup_1.1.3.bb b/meta-oe/recipes-support/cryptsetup/cryptsetup_1.1.3.bb
new file mode 100644
index 0000000..254f563
--- /dev/null
+++ b/meta-oe/recipes-support/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"
+LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+
+DEPENDS = "util-linux lvm2 libgcrypt popt"
+RRECOMMENDS_${PN} = "kernel-module-aes \
+                     kernel-module-dm-crypt \
+                     kernel-module-md5 \
+                     kernel-module-cbc \
+                     kernel-module-sha256 \
+                    "
+SRC_URI = "http://cryptsetup.googlecode.com/files/cryptsetup-${PV}.tar.bz2"
+SRC_URI[md5sum] = "318a64470861ea5b92a52f2014f1e7c1"
+SRC_URI[sha256sum] = "9c8e68a272f6d9cfb6cd65cc0743f4c44a2096c61f74e0602bf40208b5e69c0a"
+
+inherit autotools gettext
-- 
1.8.1.2




^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-02-04 16:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 14:44 [PATCH][for-danny 0/2] cryptsetup Martin Jansa
2013-02-04 14:44 ` [PATCH][for-danny 1/2] lvm2: upgrade to 2.02.97 which is compatible with newer udev Martin Jansa
2013-02-04 14:44 ` [PATCH][for-danny 2/2] cryptsetup: import from oe-classic Martin Jansa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox