All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] Addition of meta-cloud
@ 2012-12-06 13:13 David Nyström
  2012-12-06 13:13 ` [PATCH 01/14] Added protobuf-c criu dependency David Nyström
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: David Nyström @ 2012-12-06 13:13 UTC (permalink / raw)
  To: meta-virtualization

Since there are some common parts, please review,
specifically the libvirt changes.

David Nyström (14):
  Added protobuf-c criu dependency
  Added protobuf criu dependency
  Added CRIU recipe
  Added lxc recipe
  Added netcf recipe, libvirt dependency
  Added openbsd-netcat recipe, libvirt dependency
  Added openflow recipe
  Added openvswitch recipe
  Added .gitignore file
  Changed David Nyströms email in README
  Added template cloud-* images
  Added some details in README, and made the description common
  Upgraded to libvirt 1.0.0, and added a more detailed packageconfig
  Added kernel configuration for LxC and in kernel OpenvSwitch

 .gitignore                                         |    6 +
 README                                             |   13 +-
 recipes-containers/criu/criu_git.bb                |   29 +++
 .../criu/files/0001-Fixed-hardcoding.patch         |   47 ++++
 recipes-containers/criu/files/disable_tests.patch  |   19 ++
 recipes-containers/criu/protobuf-c_0.15.bb         |   20 ++
 recipes-containers/criu/protobuf_2.4.1.bb          |   18 ++
 recipes-containers/lxc/files/libmounts.patch       |   48 ++++
 recipes-containers/lxc/files/noldconfig.patch      |   29 +++
 recipes-containers/lxc/lxc_0.8.0.bb                |   39 +++
 recipes-extended/images/cloud-image-compute.bb     |   14 +
 recipes-extended/images/cloud-image-controller.bb  |   34 +++
 recipes-extended/images/cloud-image-guest.bb       |   18 ++
 recipes-extended/libvirt/libvirt_1.0.0.bb          |  139 ++++++++++
 recipes-kernel/linux/linux-yocto/lxc.cfg           |   22 ++
 recipes-kernel/linux/linux-yocto/lxc.scc           |    4 +
 recipes-kernel/linux/linux-yocto/vswitch.cfg       |    2 +
 recipes-kernel/linux/linux-yocto/vswitch.scc       |    4 +
 recipes-kernel/linux/linux-yocto_3.4.bbappend      |    5 +-
 recipes-networking/netcat/openbsd-netcat_1.6.bb    |   29 +++
 recipes-networking/netcf/netcf_git.bb              |   25 ++
 recipes-networking/openflow/openflow_1.0.bb        |   24 ++
 .../openvswitch/files/openvswitch-controller       |  274 ++++++++++++++++++++
 .../openvswitch/files/openvswitch-controller-setup |   29 +++
 .../openvswitch/files/openvswitch-example          |  102 ++++++++
 .../openvswitch/files/openvswitch-switch           |  102 ++++++++
 .../openvswitch/files/openvswitch-switch-setup     |    8 +
 .../openvswitch/openvswitch_1.4.3.bb               |   99 +++++++
 28 files changed, 1194 insertions(+), 8 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 recipes-containers/criu/criu_git.bb
 create mode 100644 recipes-containers/criu/files/0001-Fixed-hardcoding.patch
 create mode 100644 recipes-containers/criu/files/disable_tests.patch
 create mode 100644 recipes-containers/criu/protobuf-c_0.15.bb
 create mode 100644 recipes-containers/criu/protobuf_2.4.1.bb
 create mode 100644 recipes-containers/lxc/files/libmounts.patch
 create mode 100644 recipes-containers/lxc/files/noldconfig.patch
 create mode 100644 recipes-containers/lxc/lxc_0.8.0.bb
 create mode 100644 recipes-extended/images/cloud-image-compute.bb
 create mode 100644 recipes-extended/images/cloud-image-controller.bb
 create mode 100644 recipes-extended/images/cloud-image-guest.bb
 create mode 100644 recipes-extended/libvirt/libvirt_1.0.0.bb
 create mode 100644 recipes-kernel/linux/linux-yocto/lxc.cfg
 create mode 100644 recipes-kernel/linux/linux-yocto/lxc.scc
 create mode 100644 recipes-kernel/linux/linux-yocto/vswitch.cfg
 create mode 100644 recipes-kernel/linux/linux-yocto/vswitch.scc
 create mode 100644 recipes-networking/netcat/openbsd-netcat_1.6.bb
 create mode 100644 recipes-networking/netcf/netcf_git.bb
 create mode 100644 recipes-networking/openflow/openflow_1.0.bb
 create mode 100755 recipes-networking/openvswitch/files/openvswitch-controller
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-controller-setup
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-example
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-switch
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-switch-setup
 create mode 100644 recipes-networking/openvswitch/openvswitch_1.4.3.bb

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 00/14] Adding content of meta-cloud
@ 2012-12-06 13:44 david.c.nystrom
  2012-12-06 13:44 ` [PATCH 13/14] Upgraded to libvirt 1.0.0, and added a more detailed packageconfig david.c.nystrom
  0 siblings, 1 reply; 18+ messages in thread
From: david.c.nystrom @ 2012-12-06 13:44 UTC (permalink / raw)
  To: meta-virtualization

From: David Nyström <david.nystrom@enea.com>

Since there are some common parts, please review,
specifically the libvirt changes.

David Nyström (14):
  Added protobuf-c criu dependency
  Added protobuf criu dependency
  Added CRIU recipe
  Added lxc recipe
  Added netcf recipe, libvirt dependency
  Added openbsd-netcat recipe, libvirt dependency
  Added openflow recipe
  Added openvswitch recipe
  Added .gitignore file
  Changed David Nyströms email in README
  Added template cloud-* images
  Added some details in README, and made the description common
  Upgraded to libvirt 1.0.0, and added a more detailed packageconfig
  Added kernel configuration for LxC and in kernel OpenvSwitch

 .gitignore                                         |    6 +
 README                                             |   13 +-
 recipes-containers/criu/criu_git.bb                |   29 +++
 .../criu/files/0001-Fixed-hardcoding.patch         |   47 ++++
 recipes-containers/criu/files/disable_tests.patch  |   19 ++
 recipes-containers/criu/protobuf-c_0.15.bb         |   20 ++
 recipes-containers/criu/protobuf_2.4.1.bb          |   18 ++
 recipes-containers/lxc/files/libmounts.patch       |   48 ++++
 recipes-containers/lxc/files/noldconfig.patch      |   29 +++
 recipes-containers/lxc/lxc_0.8.0.bb                |   39 +++
 recipes-extended/images/cloud-image-compute.bb     |   14 +
 recipes-extended/images/cloud-image-controller.bb  |   34 +++
 recipes-extended/images/cloud-image-guest.bb       |   18 ++
 recipes-extended/libvirt/libvirt_1.0.0.bb          |  139 ++++++++++
 recipes-kernel/linux/linux-yocto/lxc.cfg           |   22 ++
 recipes-kernel/linux/linux-yocto/lxc.scc           |    4 +
 recipes-kernel/linux/linux-yocto/vswitch.cfg       |    2 +
 recipes-kernel/linux/linux-yocto/vswitch.scc       |    4 +
 recipes-kernel/linux/linux-yocto_3.4.bbappend      |    5 +-
 recipes-networking/netcat/openbsd-netcat_1.6.bb    |   29 +++
 recipes-networking/netcf/netcf_git.bb              |   25 ++
 recipes-networking/openflow/openflow_1.0.bb        |   24 ++
 .../openvswitch/files/openvswitch-controller       |  274 ++++++++++++++++++++
 .../openvswitch/files/openvswitch-controller-setup |   29 +++
 .../openvswitch/files/openvswitch-example          |  102 ++++++++
 .../openvswitch/files/openvswitch-switch           |  102 ++++++++
 .../openvswitch/files/openvswitch-switch-setup     |    8 +
 .../openvswitch/openvswitch_1.4.3.bb               |   99 +++++++
 28 files changed, 1194 insertions(+), 8 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 recipes-containers/criu/criu_git.bb
 create mode 100644 recipes-containers/criu/files/0001-Fixed-hardcoding.patch
 create mode 100644 recipes-containers/criu/files/disable_tests.patch
 create mode 100644 recipes-containers/criu/protobuf-c_0.15.bb
 create mode 100644 recipes-containers/criu/protobuf_2.4.1.bb
 create mode 100644 recipes-containers/lxc/files/libmounts.patch
 create mode 100644 recipes-containers/lxc/files/noldconfig.patch
 create mode 100644 recipes-containers/lxc/lxc_0.8.0.bb
 create mode 100644 recipes-extended/images/cloud-image-compute.bb
 create mode 100644 recipes-extended/images/cloud-image-controller.bb
 create mode 100644 recipes-extended/images/cloud-image-guest.bb
 create mode 100644 recipes-extended/libvirt/libvirt_1.0.0.bb
 create mode 100644 recipes-kernel/linux/linux-yocto/lxc.cfg
 create mode 100644 recipes-kernel/linux/linux-yocto/lxc.scc
 create mode 100644 recipes-kernel/linux/linux-yocto/vswitch.cfg
 create mode 100644 recipes-kernel/linux/linux-yocto/vswitch.scc
 create mode 100644 recipes-networking/netcat/openbsd-netcat_1.6.bb
 create mode 100644 recipes-networking/netcf/netcf_git.bb
 create mode 100644 recipes-networking/openflow/openflow_1.0.bb
 create mode 100755 recipes-networking/openvswitch/files/openvswitch-controller
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-controller-setup
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-example
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-switch
 create mode 100644 recipes-networking/openvswitch/files/openvswitch-switch-setup
 create mode 100644 recipes-networking/openvswitch/openvswitch_1.4.3.bb

-- 
1.7.9.5



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

end of thread, other threads:[~2012-12-06 14:09 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-06 13:13 [PATCH 00/14] Addition of meta-cloud David Nyström
2012-12-06 13:13 ` [PATCH 01/14] Added protobuf-c criu dependency David Nyström
2012-12-06 13:13 ` [PATCH 02/14] Added protobuf " David Nyström
2012-12-06 13:13 ` [PATCH 03/14] Added CRIU recipe David Nyström
2012-12-06 13:13 ` [PATCH 04/14] Added lxc recipe David Nyström
2012-12-06 13:13 ` [PATCH 05/14] Added netcf recipe, libvirt dependency David Nyström
2012-12-06 13:13 ` [PATCH 06/14] Added openbsd-netcat " David Nyström
2012-12-06 13:13 ` [PATCH 07/14] Added openflow recipe David Nyström
2012-12-06 13:13 ` [PATCH 08/14] Added openvswitch recipe David Nyström
2012-12-06 13:13 ` [PATCH 09/14] Added .gitignore file David Nyström
2012-12-06 13:13 ` [PATCH 10/14] Changed David Nyströms email in README David Nyström
2012-12-06 13:13 ` [PATCH 11/14] Added template cloud-* images David Nyström
2012-12-06 13:13 ` [PATCH 12/14] Added some details in README, and made the description common David Nyström
2012-12-06 13:13 ` [PATCH 13/14] Upgraded to libvirt 1.0.0, and added a more detailed packageconfig David Nyström
2012-12-06 14:00   ` Raymond Danks
2012-12-06 14:09     ` David Nyström
2012-12-06 13:13 ` [PATCH 14/14] Added kernel configuration for LxC and in kernel OpenvSwitch David Nyström
  -- strict thread matches above, loose matches on Subject: below --
2012-12-06 13:44 [PATCH 00/14] Adding content of meta-cloud david.c.nystrom
2012-12-06 13:44 ` [PATCH 13/14] Upgraded to libvirt 1.0.0, and added a more detailed packageconfig david.c.nystrom

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.