device-mapper: Upstream upgrade to 1.01.05
authorOyvind Repvik <nail@nslu2-linux.org>
Tue, 24 Jan 2006 14:22:28 +0000 (14:22 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 24 Jan 2006 14:22:28 +0000 (14:22 +0000)
packages/device-mapper/device-mapper-1.01.05/.mtn2git_empty [new file with mode: 0644]
packages/device-mapper/device-mapper-1.01.05/devmap-mknod-busybox.patch [new file with mode: 0644]
packages/device-mapper/device-mapper_1.01.05.bb [new file with mode: 0644]

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 (file)
index 0000000..e69de29
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 (file)
index 0000000..8b24f14
--- /dev/null
@@ -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 (file)
index 0000000..fc0efb1
--- /dev/null
@@ -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}
+}