All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath maps partionable ......
@ 2013-01-23  3:16 lei.yang
  2013-01-31  7:04 ` [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath McClintock Matthew-B29882
  0 siblings, 1 reply; 4+ messages in thread
From: lei.yang @ 2013-01-23  3:16 UTC (permalink / raw)
  To: meta-virtualization, david.nystrom

From: Lei Yang <lei.yang@windriver.com>

Now,It can be used for kvm disk img partion mounting for me.

Signed-off-by: Lei Yang <lei.yang@windriver.com>
---
 .../multipath-tools/multipath-tools_git.bb         |   46 ++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)
 create mode 100644 recipes-extended/multipath-tools/multipath-tools_git.bb

diff --git a/recipes-extended/multipath-tools/multipath-tools_git.bb b/recipes-extended/multipath-tools/multipath-tools_git.bb
new file mode 100644
index 0000000..633b9f2
--- /dev/null
+++ b/recipes-extended/multipath-tools/multipath-tools_git.bb
@@ -0,0 +1,46 @@
+SUMMARY = "Tools to Manage Multipathed Devices with the device-mapper"
+DESCRIPTION = "This package provides the tools to manage multipathed devices by \
+instructing the device-mapper multipath module what to do"
+
+HOMEPAGE = "http://christophe.varoqui.free.fr/"
+DEPENDS = "readline libaio lvm2"
+LICENSE = "GPLv2"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=7be2873b6270e45abacc503abbe2aa3d"
+S="${WORKDIR}/git"
+
+
+SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http"
+
+SRCREV = "d3683ab18b386e9b3b54b59a122c689e9ebdf5cf"
+PV = "0.4.9+gitr${SRCPV}"
+
+inherit autotools
+
+EXTRA_OEMAKE="LIB=${libdir} exec_prefix=${exec_prefix} libdir=${libdir}"
+
+PACKAGES =+ "libmpathpersist mpathpersist kpartx libmultipath multipath multipathd libmultipath-dev libmpathpersist-dev"
+
+
+RDEPENDS_${PN} += "libmpathpersist mpathpersist kpartx libmultipath multipath multipathd udev"
+
+do_install_append () {
+	ln -sf libmpathpersist.so.0 ${D}${libdir}/libmpathpersist.so
+	ln -sf libmultipath.so.0 ${D}${libdir}/libmultipath.so
+}
+
+ALLOW_EMPTY_${PN} = "1"
+FILES_${PN}     = ""
+
+FILES_libmpathpersist = "${libdir}/libmpathpersist*.so.0"
+FILES_mpathpersist = "${sbindir}/mpathpersist"
+FILES_kpartx = "${sbindir}/kpartx ${base_libdir}/udev/"
+FILES_libmultipath = "${libdir}/libcheck*.so ${libdir}/libpri*.so ${libdir}/libmultipath*.so.0"
+FILES_multipath = "${sbindir}/multipath ${sysconfdir}"
+FILES_multipathd = "${sbindir}/multipathd ${base_libdir}"
+
+#put the symbol link lib in -dev 
+FILES_libmultipath-dev = "${libdir}/libmultipath*.so"
+FILES_libmpathpersist-dev = "${libdir}/libmpathpersist*.so"
+
+
-- 
1.7.1



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

* Re: [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath...
  2013-01-23  3:16 [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath maps partionable lei.yang
@ 2013-01-31  7:04 ` McClintock Matthew-B29882
  2013-01-31  7:07   ` lei yang
  0 siblings, 1 reply; 4+ messages in thread
From: McClintock Matthew-B29882 @ 2013-01-31  7:04 UTC (permalink / raw)
  To: lei.yang@windriver.com; +Cc: meta-virtualization@yoctoproject.org

On Tue, Jan 22, 2013 at 9:16 PM,  <lei.yang@windriver.com> wrote:
> From: Lei Yang <lei.yang@windriver.com>
>
> Now,It can be used for kvm disk img partion mounting for me.

Looks like the first subject line is way to long.... ;)

-M

>
> Signed-off-by: Lei Yang <lei.yang@windriver.com>
> ---
>  .../multipath-tools/multipath-tools_git.bb         |   46 ++++++++++++++++++++
>  1 files changed, 46 insertions(+), 0 deletions(-)
>  create mode 100644 recipes-extended/multipath-tools/multipath-tools_git.bb
>
> diff --git a/recipes-extended/multipath-tools/multipath-tools_git.bb b/recipes-extended/multipath-tools/multipath-tools_git.bb
> new file mode 100644
> index 0000000..633b9f2
> --- /dev/null
> +++ b/recipes-extended/multipath-tools/multipath-tools_git.bb
> @@ -0,0 +1,46 @@
> +SUMMARY = "Tools to Manage Multipathed Devices with the device-mapper"
> +DESCRIPTION = "This package provides the tools to manage multipathed devices by \
> +instructing the device-mapper multipath module what to do"
> +
> +HOMEPAGE = "http://christophe.varoqui.free.fr/"
> +DEPENDS = "readline libaio lvm2"
> +LICENSE = "GPLv2"
> +
> +LIC_FILES_CHKSUM = "file://COPYING;md5=7be2873b6270e45abacc503abbe2aa3d"
> +S="${WORKDIR}/git"
> +
> +
> +SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http"
> +
> +SRCREV = "d3683ab18b386e9b3b54b59a122c689e9ebdf5cf"
> +PV = "0.4.9+gitr${SRCPV}"
> +
> +inherit autotools
> +
> +EXTRA_OEMAKE="LIB=${libdir} exec_prefix=${exec_prefix} libdir=${libdir}"
> +
> +PACKAGES =+ "libmpathpersist mpathpersist kpartx libmultipath multipath multipathd libmultipath-dev libmpathpersist-dev"
> +
> +
> +RDEPENDS_${PN} += "libmpathpersist mpathpersist kpartx libmultipath multipath multipathd udev"
> +
> +do_install_append () {
> +       ln -sf libmpathpersist.so.0 ${D}${libdir}/libmpathpersist.so
> +       ln -sf libmultipath.so.0 ${D}${libdir}/libmultipath.so
> +}
> +
> +ALLOW_EMPTY_${PN} = "1"
> +FILES_${PN}     = ""
> +
> +FILES_libmpathpersist = "${libdir}/libmpathpersist*.so.0"
> +FILES_mpathpersist = "${sbindir}/mpathpersist"
> +FILES_kpartx = "${sbindir}/kpartx ${base_libdir}/udev/"
> +FILES_libmultipath = "${libdir}/libcheck*.so ${libdir}/libpri*.so ${libdir}/libmultipath*.so.0"
> +FILES_multipath = "${sbindir}/multipath ${sysconfdir}"
> +FILES_multipathd = "${sbindir}/multipathd ${base_libdir}"
> +
> +#put the symbol link lib in -dev
> +FILES_libmultipath-dev = "${libdir}/libmultipath*.so"
> +FILES_libmpathpersist-dev = "${libdir}/libmpathpersist*.so"
> +
> +
> --
> 1.7.1
>
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization


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

* Re: [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath...
  2013-01-31  7:04 ` [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath McClintock Matthew-B29882
@ 2013-01-31  7:07   ` lei yang
  2013-01-31  7:08     ` McClintock Matthew-B29882
  0 siblings, 1 reply; 4+ messages in thread
From: lei yang @ 2013-01-31  7:07 UTC (permalink / raw)
  To: McClintock Matthew-B29882; +Cc: meta-virtualization@yoctoproject.org

On 01/31/2013 03:04 PM, McClintock Matthew-B29882 wrote:
> On Tue, Jan 22, 2013 at 9:16 PM,  <lei.yang@windriver.com> wrote:
>> From: Lei Yang <lei.yang@windriver.com>
>>
>> Now,It can be used for kvm disk img partion mounting for me.
> Looks like the first subject line is way to long.... ;)

Yes, I have resent

Lei



> -M
>
>> Signed-off-by: Lei Yang <lei.yang@windriver.com>
>> ---
>>   .../multipath-tools/multipath-tools_git.bb         |   46 ++++++++++++++++++++
>>   1 files changed, 46 insertions(+), 0 deletions(-)
>>   create mode 100644 recipes-extended/multipath-tools/multipath-tools_git.bb
>>
>> diff --git a/recipes-extended/multipath-tools/multipath-tools_git.bb b/recipes-extended/multipath-tools/multipath-tools_git.bb
>> new file mode 100644
>> index 0000000..633b9f2
>> --- /dev/null
>> +++ b/recipes-extended/multipath-tools/multipath-tools_git.bb
>> @@ -0,0 +1,46 @@
>> +SUMMARY = "Tools to Manage Multipathed Devices with the device-mapper"
>> +DESCRIPTION = "This package provides the tools to manage multipathed devices by \
>> +instructing the device-mapper multipath module what to do"
>> +
>> +HOMEPAGE = "http://christophe.varoqui.free.fr/"
>> +DEPENDS = "readline libaio lvm2"
>> +LICENSE = "GPLv2"
>> +
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=7be2873b6270e45abacc503abbe2aa3d"
>> +S="${WORKDIR}/git"
>> +
>> +
>> +SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http"
>> +
>> +SRCREV = "d3683ab18b386e9b3b54b59a122c689e9ebdf5cf"
>> +PV = "0.4.9+gitr${SRCPV}"
>> +
>> +inherit autotools
>> +
>> +EXTRA_OEMAKE="LIB=${libdir} exec_prefix=${exec_prefix} libdir=${libdir}"
>> +
>> +PACKAGES =+ "libmpathpersist mpathpersist kpartx libmultipath multipath multipathd libmultipath-dev libmpathpersist-dev"
>> +
>> +
>> +RDEPENDS_${PN} += "libmpathpersist mpathpersist kpartx libmultipath multipath multipathd udev"
>> +
>> +do_install_append () {
>> +       ln -sf libmpathpersist.so.0 ${D}${libdir}/libmpathpersist.so
>> +       ln -sf libmultipath.so.0 ${D}${libdir}/libmultipath.so
>> +}
>> +
>> +ALLOW_EMPTY_${PN} = "1"
>> +FILES_${PN}     = ""
>> +
>> +FILES_libmpathpersist = "${libdir}/libmpathpersist*.so.0"
>> +FILES_mpathpersist = "${sbindir}/mpathpersist"
>> +FILES_kpartx = "${sbindir}/kpartx ${base_libdir}/udev/"
>> +FILES_libmultipath = "${libdir}/libcheck*.so ${libdir}/libpri*.so ${libdir}/libmultipath*.so.0"
>> +FILES_multipath = "${sbindir}/multipath ${sysconfdir}"
>> +FILES_multipathd = "${sbindir}/multipathd ${base_libdir}"
>> +
>> +#put the symbol link lib in -dev
>> +FILES_libmultipath-dev = "${libdir}/libmultipath*.so"
>> +FILES_libmpathpersist-dev = "${libdir}/libmpathpersist*.so"
>> +
>> +
>> --
>> 1.7.1
>>
>> _______________________________________________
>> meta-virtualization mailing list
>> meta-virtualization@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/meta-virtualization



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

* Re: [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath...
  2013-01-31  7:07   ` lei yang
@ 2013-01-31  7:08     ` McClintock Matthew-B29882
  0 siblings, 0 replies; 4+ messages in thread
From: McClintock Matthew-B29882 @ 2013-01-31  7:08 UTC (permalink / raw)
  To: lei yang; +Cc: McClintock Matthew-B29882, meta-virtualization@yoctoproject.org

On Thu, Jan 31, 2013 at 1:07 AM, lei yang <lei.yang@windriver.com> wrote:
> On 01/31/2013 03:04 PM, McClintock Matthew-B29882 wrote:
>>
>> On Tue, Jan 22, 2013 at 9:16 PM,  <lei.yang@windriver.com> wrote:
>>>
>>> From: Lei Yang <lei.yang@windriver.com>
>>>
>>> Now,It can be used for kvm disk img partion mounting for me.
>>
>> Looks like the first subject line is way to long.... ;)
>
>
> Yes, I have resent

Ahh, ok sorry. I should have read all messages.

-M

>
> Lei
>
>
>
>
>> -M
>>
>>> Signed-off-by: Lei Yang <lei.yang@windriver.com>
>>> ---
>>>   .../multipath-tools/multipath-tools_git.bb         |   46
>>> ++++++++++++++++++++
>>>   1 files changed, 46 insertions(+), 0 deletions(-)
>>>   create mode 100644
>>> recipes-extended/multipath-tools/multipath-tools_git.bb
>>>
>>> diff --git a/recipes-extended/multipath-tools/multipath-tools_git.bb
>>> b/recipes-extended/multipath-tools/multipath-tools_git.bb
>>> new file mode 100644
>>> index 0000000..633b9f2
>>> --- /dev/null
>>> +++ b/recipes-extended/multipath-tools/multipath-tools_git.bb
>>> @@ -0,0 +1,46 @@
>>> +SUMMARY = "Tools to Manage Multipathed Devices with the device-mapper"
>>> +DESCRIPTION = "This package provides the tools to manage multipathed
>>> devices by \
>>> +instructing the device-mapper multipath module what to do"
>>> +
>>> +HOMEPAGE = "http://christophe.varoqui.free.fr/"
>>> +DEPENDS = "readline libaio lvm2"
>>> +LICENSE = "GPLv2"
>>> +
>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=7be2873b6270e45abacc503abbe2aa3d"
>>> +S="${WORKDIR}/git"
>>> +
>>> +
>>> +SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http"
>>> +
>>> +SRCREV = "d3683ab18b386e9b3b54b59a122c689e9ebdf5cf"
>>> +PV = "0.4.9+gitr${SRCPV}"
>>> +
>>> +inherit autotools
>>> +
>>> +EXTRA_OEMAKE="LIB=${libdir} exec_prefix=${exec_prefix} libdir=${libdir}"
>>> +
>>> +PACKAGES =+ "libmpathpersist mpathpersist kpartx libmultipath multipath
>>> multipathd libmultipath-dev libmpathpersist-dev"
>>> +
>>> +
>>> +RDEPENDS_${PN} += "libmpathpersist mpathpersist kpartx libmultipath
>>> multipath multipathd udev"
>>> +
>>> +do_install_append () {
>>> +       ln -sf libmpathpersist.so.0 ${D}${libdir}/libmpathpersist.so
>>> +       ln -sf libmultipath.so.0 ${D}${libdir}/libmultipath.so
>>> +}
>>> +
>>> +ALLOW_EMPTY_${PN} = "1"
>>> +FILES_${PN}     = ""
>>> +
>>> +FILES_libmpathpersist = "${libdir}/libmpathpersist*.so.0"
>>> +FILES_mpathpersist = "${sbindir}/mpathpersist"
>>> +FILES_kpartx = "${sbindir}/kpartx ${base_libdir}/udev/"
>>> +FILES_libmultipath = "${libdir}/libcheck*.so ${libdir}/libpri*.so
>>> ${libdir}/libmultipath*.so.0"
>>> +FILES_multipath = "${sbindir}/multipath ${sysconfdir}"
>>> +FILES_multipathd = "${sbindir}/multipathd ${base_libdir}"
>>> +
>>> +#put the symbol link lib in -dev
>>> +FILES_libmultipath-dev = "${libdir}/libmultipath*.so"
>>> +FILES_libmpathpersist-dev = "${libdir}/libmpathpersist*.so"
>>> +
>>> +
>>> --
>>> 1.7.1
>>>
>>> _______________________________________________
>>> meta-virtualization mailing list
>>> meta-virtualization@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/meta-virtualization
>
>
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization


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

end of thread, other threads:[~2013-01-31  7:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-23  3:16 [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath maps partionable lei.yang
2013-01-31  7:04 ` [PATCH] This package provides: - multipath: scans the system for multipathed devices, assembles - multipathd: waits for maps events then execs multipath - kpartx: maps linear devmaps to device partitions, which makes multipath McClintock Matthew-B29882
2013-01-31  7:07   ` lei yang
2013-01-31  7:08     ` McClintock Matthew-B29882

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.