Device-mapper: Add it, courtesy Dan J Williams
authorKoen Kooi <koen@openembedded.org>
Sat, 27 Aug 2005 10:24:32 +0000 (10:24 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sat, 27 Aug 2005 10:24:32 +0000 (10:24 +0000)
packages/device-mapper/.mtn2git_empty [new file with mode: 0644]
packages/device-mapper/device-mapper-1.01.04/.mtn2git_empty [new file with mode: 0644]
packages/device-mapper/device-mapper-1.01.04/devmap-mknod-busybox.patch [new file with mode: 0644]
packages/device-mapper/device-mapper_1.01.04.bb [new file with mode: 0644]

diff --git a/packages/device-mapper/.mtn2git_empty b/packages/device-mapper/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/device-mapper/device-mapper-1.01.04/.mtn2git_empty b/packages/device-mapper/device-mapper-1.01.04/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/device-mapper/device-mapper-1.01.04/devmap-mknod-busybox.patch b/packages/device-mapper/device-mapper-1.01.04/devmap-mknod-busybox.patch
new file mode 100644 (file)
index 0000000..70a2658
--- /dev/null
@@ -0,0 +1,9 @@
+--- device-mapper.1.01.04/scripts/devmap_mknod.sh      2002-07-23 05:50:13.000000000 -0700
++++ device-mapper.1.01.04/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.04.bb b/packages/device-mapper/device-mapper_1.01.04.bb
new file mode 100644 (file)
index 0000000..64d66b9
--- /dev/null
@@ -0,0 +1,28 @@
+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
+
+INITSCRIPT_NAME = "devmap_mknod.sh"
+INITSCRIPT_PARAMS = "defaults"
+
+do_stage () {
+        install -m 0644 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 -m 755 ${S}/scripts/${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
+}