All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] add some recipes
@ 2014-11-28  8:49 Bian Naimeng
  2014-11-28  8:49 ` [PATCH 1/3] [meta-oe]daemontools: add recipe Bian Naimeng
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Bian Naimeng @ 2014-11-28  8:49 UTC (permalink / raw)
  To: openembedded-devel

Bian Naimeng (3):
  [meta-oe] daemontools: add recipe
  [meta-oe] dmraid: add recipe
  [meta-oe] drbd: add recipe

 .../recipes-extended/dmraid/dmraid_1.0.0.rc16.bb   |  71 +++++
 .../dmraid/files/01_fix_broken_linking.patch       | 121 +++++++++
 .../dmraid/files/02_disable_dmreg.patch            | 134 ++++++++++
 .../files/03_fix_hyphen-used-as-minus-sign.patch   | 291 +++++++++++++++++++++
 .../dmraid/files/04_promise-add-offsets.patch      |  13 +
 .../dmraid/files/05_exit_code.patch                |  22 ++
 .../dmraid/files/06_support_virtio_devices.patch   |  13 +
 .../dmraid/files/07_isw-probe-hpa.patch            | 144 ++++++++++
 .../files/08_activate_multiple_raid_sets.patch     |  12 +
 .../dmraid/files/09_pdc_raid10_failure..patch      |  14 +
 .../dmraid/files/10_ddf1_lsi_persistent_name.patch |  20 ++
 .../files/11_fix_isw_sectors_calculation.patch     |  14 +
 .../dmraid/files/12_jmicron_namefix.patch          |  20 ++
 .../dmraid/files/13_fix_testing.patch              |  24 ++
 .../files/14_pdc_dump_extended_metadata.patch      | 147 +++++++++++
 .../15_drop_p_for_partition_conditional.patch      |  31 +++
 .../dmraid/files/16_change-uuid.patch              |  77 ++++++
 .../files/17_convert-dmraid45-to-dmraid.patch      | 273 +++++++++++++++++++
 .../dmraid/files/18_ignore-too-small-devices.patch |  39 +++
 .../files/19_compile-dmraid-in-subdir-tools.patch  |  20 ++
 .../20_specifies-install-dir-by-DESTDIR.patch      | 123 +++++++++
 meta-oe/recipes-extended/drbd/drbd_8.4.4.bb        |  57 ++++
 meta-oe/recipes-extended/drbd/files/drbd.service   |  12 +
 ...or.h-include-errno.h-instead-of-extern-int.diff |  25 ++
 ....c-.-supervise-may-be-a-symlink-if-it-s-da.diff |  47 ++++
 .../daemontools/daemontools/cross-compile.patch    |  45 ++++
 .../daemontools/daemontools_0.76.bb                |  47 ++++
 27 files changed, 1856 insertions(+)
 create mode 100644 meta-oe/recipes-extended/dmraid/dmraid_1.0.0.rc16.bb
 create mode 100644 meta-oe/recipes-extended/dmraid/files/01_fix_broken_linking.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/02_disable_dmreg.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/03_fix_hyphen-used-as-minus-sign.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/04_promise-add-offsets.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/05_exit_code.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/06_support_virtio_devices.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/07_isw-probe-hpa.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/08_activate_multiple_raid_sets.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/09_pdc_raid10_failure..patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/10_ddf1_lsi_persistent_name.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/11_fix_isw_sectors_calculation.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/12_jmicron_namefix.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/13_fix_testing.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/14_pdc_dump_extended_metadata.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/15_drop_p_for_partition_conditional.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/16_change-uuid.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/17_convert-dmraid45-to-dmraid.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/18_ignore-too-small-devices.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/19_compile-dmraid-in-subdir-tools.patch
 create mode 100644 meta-oe/recipes-extended/dmraid/files/20_specifies-install-dir-by-DESTDIR.patch
 create mode 100644 meta-oe/recipes-extended/drbd/drbd_8.4.4.bb
 create mode 100644 meta-oe/recipes-extended/drbd/files/drbd.service
 create mode 100644 meta-oe/recipes-support/daemontools/daemontools/0001-error.h-include-errno.h-instead-of-extern-int.diff
 create mode 100644 meta-oe/recipes-support/daemontools/daemontools/0002-supervise.c-.-supervise-may-be-a-symlink-if-it-s-da.diff
 create mode 100644 meta-oe/recipes-support/daemontools/daemontools/cross-compile.patch
 create mode 100644 meta-oe/recipes-support/daemontools/daemontools_0.76.bb

-- 
1.9.1



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

end of thread, other threads:[~2014-12-10  8:36 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-28  8:49 [PATCH 0/3] add some recipes Bian Naimeng
2014-11-28  8:49 ` [PATCH 1/3] [meta-oe]daemontools: add recipe Bian Naimeng
2014-11-29 14:23   ` Koen Kooi
2014-11-28  8:49 ` [PATCH 2/3] [meta-oe] dmraid: " Bian Naimeng
2014-11-28 12:50   ` Martin Jansa
2014-11-29 14:25   ` Koen Kooi
2014-12-02  5:06     ` Bian, Naimeng
2014-11-28  8:49 ` [PATCH 3/3] [meta-oe] drbd: " Bian Naimeng
2014-11-29 14:27   ` Koen Kooi
2014-12-09 10:17   ` Martin Jansa
2014-12-10  8:36     ` Bian, Naimeng

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.