From 801060ccb26de5c9e2a83bfa8870ef68a0089e1f Mon Sep 17 00:00:00 2001
From: Oyvind Repvik <nail@nslu2-linux.org>
Date: Tue, 24 Jan 2006 14:22:28 +0000
Subject: device-mapper: Upstream upgrade to 1.01.05

---
 .../device-mapper-1.01.05/.mtn2git_empty           |  0
 .../devmap-mknod-busybox.patch                     |  9 ++++++
 packages/device-mapper/device-mapper_1.01.05.bb    | 33 ++++++++++++++++++++++
 3 files changed, 42 insertions(+)
 create mode 100644 packages/device-mapper/device-mapper-1.01.05/.mtn2git_empty
 create mode 100644 packages/device-mapper/device-mapper-1.01.05/devmap-mknod-busybox.patch
 create mode 100644 packages/device-mapper/device-mapper_1.01.05.bb

diff --git a/packages/device-mapper/device-mapper-1.01.05/.mtn2git_empty b/packages/device-mapper/device-mapper-1.01.05/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/packages/device-mapper/device-mapper-1.01.05/devmap-mknod-busybox.patch b/packages/device-mapper/device-mapper-1.01.05/devmap-mknod-busybox.patch
new file mode 100644
index 0000000000..8b24f143dd
--- /dev/null
+++ b/packages/device-mapper/device-mapper-1.01.05/devmap-mknod-busybox.patch
@@ -0,0 +1,9 @@
+--- device-mapper.1.01.05/scripts/devmap_mknod.sh	2002-07-23 05:50:13.000000000 -0700
++++ device-mapper.1.01.05/scripts/devmap_mknod.sh~	2005-08-25 14:51:13.000000000 -0700
+@@ -37,5 +37,5 @@
+ test -e $CONTROL && rm -f $CONTROL
+ 
+ echo "Creating $CONTROL character device with major:$MAJOR minor:$MINOR."
+-mknod --mode=600 $CONTROL c $MAJOR $MINOR
++mknod -m 600 $CONTROL c $MAJOR $MINOR
+ 
diff --git a/packages/device-mapper/device-mapper_1.01.05.bb b/packages/device-mapper/device-mapper_1.01.05.bb
new file mode 100644
index 0000000000..fc0efb1670
--- /dev/null
+++ b/packages/device-mapper/device-mapper_1.01.05.bb
@@ -0,0 +1,33 @@
+SECTION = "libs"
+DESCRIPTION = "The Device-mapper is a new component of the linux kernel \
+that supports logical volume management. It is required by LVM2 and EVMS. \
+The original LVM (included in stock 2.4 kernels) does not use it."
+MAINTAINER = "Dan Williams <dan.j.williams@gmail.com>"
+LICENSE = "GPL"
+PR = "r2"
+
+S = "${WORKDIR}/${PN}.${PV}"
+
+SRC_URI = "ftp://sources.redhat.com/pub/dm/device-mapper.${PV}.tgz \
+	   file://devmap-mknod-busybox.patch;patch=1"
+
+inherit autotools update-rc.d
+
+# The install-script will fail without this.
+EXTRA_OECONF="--with-user= --with-group= "
+
+INITSCRIPT_NAME = "devmap_mknod.sh"
+INITSCRIPT_PARAMS = "defaults"
+
+do_stage () {
+        install -m 0644 ${S}/lib/libdevmapper.h ${STAGING_INCDIR} || die "failed to install libdevmapper.h"
+        oe_libinstall -a -so -C lib/ioctl libdevmapper ${STAGING_LIBDIR}
+}
+
+do_install() {
+        autotools_do_install
+#	oe_runmake install_static_lib
+	install -d ${D}/${libdir}/ioctl
+	install -m 755 ${S}/lib/ioctl/libdevmapper.a ${D}/${libdir}/ioctl/
+        install -D -m 755 ${S}/scripts/${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
+}
-- 
cgit v1.2.3