diff options
author | Koen Kooi <koen@openembedded.org> | 2005-08-27 10:24:32 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-27 10:24:32 +0000 |
commit | aa444ace286f8a0686d17ee42efcf2e61fcfdab0 (patch) | |
tree | 07c7cb33ab63ea09768eb92056964f6f2f90a8d6 /packages/device-mapper | |
parent | c9310255bcef16e59907891f5ef65a897bd52297 (diff) |
Device-mapper: Add it, courtesy Dan J Williams
Diffstat (limited to 'packages/device-mapper')
4 files changed, 37 insertions, 0 deletions
diff --git a/packages/device-mapper/.mtn2git_empty b/packages/device-mapper/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/device-mapper/.mtn2git_empty 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 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/device-mapper/device-mapper-1.01.04/.mtn2git_empty 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 index 0000000000..70a2658930 --- /dev/null +++ b/packages/device-mapper/device-mapper-1.01.04/devmap-mknod-busybox.patch @@ -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 index 0000000000..64d66b965e --- /dev/null +++ b/packages/device-mapper/device-mapper_1.01.04.bb @@ -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} +} |