From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from judge.camp.se-eng.com (75-148-42-21-Colorado.hfc.comcastbusiness.net [75.148.42.21]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id E0276E0141C for ; Thu, 6 Dec 2012 14:23:05 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by judge.camp.se-eng.com (Postfix) with ESMTP id B2239138081; Thu, 6 Dec 2012 15:23:03 -0700 (MST) X-Virus-Scanned: amavisd-new at camp.se-eng.com Received: from judge.camp.se-eng.com ([127.0.0.1]) by localhost (judge.camp.se-eng.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q32xf75jXs8D; Thu, 6 Dec 2012 15:23:00 -0700 (MST) Received: from [172.20.102.1] (vpn01.camp.se-eng.com [172.20.102.1]) by judge.camp.se-eng.com (Postfix) with ESMTPSA id 2148613806E; Thu, 6 Dec 2012 15:23:00 -0700 (MST) Message-ID: <50C11AC2.7050300@se-eng.com> Date: Thu, 06 Dec 2012 15:22:58 -0700 From: Raymond Danks User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121028 Thunderbird/16.0.2 MIME-Version: 1.0 To: Bruce Ashfield References: <1354813596-8233-1-git-send-email-david.nystrom@enea.com> In-Reply-To: Cc: meta-virtualization@yoctoproject.org Subject: Re: [PATCHv4 00/15] meta-cloud merge, updated with review comments X-BeenThere: meta-virtualization@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Discussion of layer enabling hypervisor, virtualization tool stack, and cloud support" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Dec 2012 22:23:07 -0000 Content-Type: multipart/alternative; boundary="------------030004090301050002060909" --------------030004090301050002060909 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit On 12/06/2012 01:49 PM, Bruce Ashfield wrote: > > > > On Thu, Dec 6, 2012 at 12:06 PM, > wrote: > > From: David Nyström > > > PATCHv4 updated with review comments. > > David Nyström (15): > Added protobuf-c criu dependency > Added protobuf criu dependency > Added CRIU 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 > Added kernel configuration for LxC and in kernel OpenvSwitch > Updated libvirt to 1.0.0, added more details to packageconfig > Removed old version of libvirt > Added LxC recipe from meta-fsl-ppc, curtesy of Matthew McClintock, > Stuart Yoder > > > v4 looks pretty good to me, and we can continue to tweak it once it is > in tree. > > Reviewed-by: Bruce Ashfield > Thanks Bruce. I concur. I haven't been as active as I'd have liked to with this, but it's good to get it in the tree and go from there. Ray > > > .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/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 ++ > .../{libvirt_0.10.2.bb => > libvirt_1.0.0.bb } | 69 +++-- > 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 +++++++ > 27 files changed, 1053 insertions(+), 31 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/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 > > rename recipes-extended/libvirt/{libvirt_0.10.2.bb > => libvirt_1.0.0.bb > } (61%) > 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 > > _______________________________________________ > meta-virtualization mailing list > meta-virtualization@yoctoproject.org > > https://lists.yoctoproject.org/listinfo/meta-virtualization > > > > > -- > "Thou shalt not follow the NULL pointer, for chaos and madness await > thee at its end" > > > _______________________________________________ > meta-virtualization mailing list > meta-virtualization@yoctoproject.org > https://lists.yoctoproject.org/listinfo/meta-virtualization --------------030004090301050002060909 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit
On 12/06/2012 01:49 PM, Bruce Ashfield wrote:



On Thu, Dec 6, 2012 at 12:06 PM, <david.c.nystrom@gmail.com> wrote:
From: David Nyström <david.nystrom@enea.com>

PATCHv4 updated with review comments.

David Nyström (15):
  Added protobuf-c criu dependency
  Added protobuf criu dependency
  Added CRIU 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
  Added kernel configuration for LxC and in kernel OpenvSwitch
  Updated libvirt to 1.0.0, added more details to packageconfig
  Removed old version of libvirt
  Added LxC recipe from meta-fsl-ppc, curtesy of Matthew McClintock,
    Stuart Yoder

v4 looks pretty good to me, and we can continue to tweak it once it is
in tree.

Reviewed-by: Bruce Ashfield <bruce.ashfield@windriver.com>

Thanks Bruce.  I concur. I haven't been as active as I'd have liked to with this, but it's good to get it in the tree and go from there.

Ray
 

 .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/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 ++
 .../{libvirt_0.10.2.bb => libvirt_1.0.0.bb}        |   69 +++--
 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 +++++++
 27 files changed, 1053 insertions(+), 31 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/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
 rename recipes-extended/libvirt/{libvirt_0.10.2.bb => libvirt_1.0.0.bb} (61%)
 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

_______________________________________________
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization



--
"Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end"


_______________________________________________
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization

--------------030004090301050002060909--