All of lore.kernel.org
 help / color / mirror / Atom feed
* Openvswitch integration in yocto
@ 2013-10-29  7:03 sonia verma
  2013-10-29 10:11 ` Paul Eggleton
  0 siblings, 1 reply; 4+ messages in thread
From: sonia verma @ 2013-10-29  7:03 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 670 bytes --]

Hi All,

i am new to yocto environment. i want to build openvswitch in yocto_1.4.

The openvswitch is path :
*QorIQ-SDK-V1.4-20130814-yocto/meta-virtualization/recipes-networking/openvswitch.

*

For compiling openvswitch i perform following steps:-

   1.  bitbake -f -c compile openvswitch.
   2.  bitbake openvswitch.
   3.  bitbake fsl-image-core.

but when i get fsl-image-core-t4240rdb-20131028123337.rootfs.ext2.gz.u-boot
 & boot the board with uImage & above file system i did not find any
openvswitch utilities. can you please guide me to how to integrate
openvswitch in yocto.

looking for the positive response

-------
Regards
Sonia

[-- Attachment #2: Type: text/html, Size: 967 bytes --]

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

* Re: Openvswitch integration in yocto
  2013-10-29  7:03 Openvswitch integration in yocto sonia verma
@ 2013-10-29 10:11 ` Paul Eggleton
  2013-10-29 17:31   ` Sandeep G.R
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Eggleton @ 2013-10-29 10:11 UTC (permalink / raw)
  To: sonia verma; +Cc: yocto

Hi Sonia,

On Tuesday 29 October 2013 12:33:04 sonia verma wrote:
> For compiling openvswitch i perform following steps:-
> 
>    1.  bitbake -f -c compile openvswitch.
>    2.  bitbake openvswitch.
>    3.  bitbake fsl-image-core.
> 
> but when i get fsl-image-core-t4240rdb-20131028123337.rootfs.ext2.gz.u-boot
>  & boot the board with uImage & above file system i did not find any
> openvswitch utilities. can you please guide me to how to integrate
> openvswitch in yocto.

If you wish openvswitch to be included in your image you will need to add it
explicitly - see this section of the manual:

http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#usingpoky-extend-customimage

Once you have done this, steps 1 and 2 are no longer necessary.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: Openvswitch integration in yocto
  2013-10-29 10:11 ` Paul Eggleton
@ 2013-10-29 17:31   ` Sandeep G.R
  2013-10-29 20:24     ` Gary Thomas
  0 siblings, 1 reply; 4+ messages in thread
From: Sandeep G.R @ 2013-10-29 17:31 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: sonia verma, yocto

[-- Attachment #1: Type: text/plain, Size: 1424 bytes --]

Hi Sonia,

        Add this line IMAGE_INSTALL_append += "openvswitch" to *
QorIQ-SDK-V1.4-20130814-yocto/meta-fsl-networking/images/fsl-image-core.bb.*
*
*
And do step 3 and openvswitch will be on T4240QDS.


On Tue, Oct 29, 2013 at 4:11 AM, Paul Eggleton <
paul.eggleton@linux.intel.com> wrote:

> Hi Sonia,
>
> On Tuesday 29 October 2013 12:33:04 sonia verma wrote:
> > For compiling openvswitch i perform following steps:-
> >
> >    1.  bitbake -f -c compile openvswitch.
> >    2.  bitbake openvswitch.
> >    3.  bitbake fsl-image-core.
> >
> > but when i get
> fsl-image-core-t4240rdb-20131028123337.rootfs.ext2.gz.u-boot
> >  & boot the board with uImage & above file system i did not find any
> > openvswitch utilities. can you please guide me to how to integrate
> > openvswitch in yocto.
>
> If you wish openvswitch to be included in your image you will need to add
> it
> explicitly - see this section of the manual:
>
>
> http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#usingpoky-extend-customimage
>
> Once you have done this, steps 1 and 2 are no longer necessary.
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>



-- 
*Thanks & Regards,*
*Sandeep G R*

[-- Attachment #2: Type: text/html, Size: 3063 bytes --]

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

* Re: Openvswitch integration in yocto
  2013-10-29 17:31   ` Sandeep G.R
@ 2013-10-29 20:24     ` Gary Thomas
  0 siblings, 0 replies; 4+ messages in thread
From: Gary Thomas @ 2013-10-29 20:24 UTC (permalink / raw)
  To: yocto

On 2013-10-29 11:31, Sandeep G.R wrote:
> Hi Sonia,
>
>          Add this line IMAGE_INSTALL_append += "openvswitch" to*QorIQ-SDK-V1.4-20130814-yocto/meta-fsl-networking/images/fsl-image-core.bb <http://fsl-image-core.bb>.*

It's not necessary (and indeed, poor practice) to make a change to the main recipes like this.

Much better would be to add that line to "local.conf" and leave the main recipes untouched.
Of course, you still have to rebuild the image (step 3) for this to have any affect.

> *
> *
> And do step 3 and openvswitch will be on T4240QDS.
>
>
> On Tue, Oct 29, 2013 at 4:11 AM, Paul Eggleton <paul.eggleton@linux.intel.com <mailto:paul.eggleton@linux.intel.com>> wrote:
>
>     Hi Sonia,
>
>     On Tuesday 29 October 2013 12:33:04 sonia verma wrote:
>     > For compiling openvswitch i perform following steps:-
>     >
>     >    1.  bitbake -f -c compile openvswitch.
>     >    2.  bitbake openvswitch.
>     >    3.  bitbake fsl-image-core.
>     >
>     > but when i get fsl-image-core-t4240rdb-20131028123337.rootfs.ext2.gz.u-boot
>     >  & boot the board with uImage & above file system i did not find any
>     > openvswitch utilities. can you please guide me to how to integrate
>     > openvswitch in yocto.
>
>     If you wish openvswitch to be included in your image you will need to add it
>     explicitly - see this section of the manual:
>
>     http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#usingpoky-extend-customimage
>
>     Once you have done this, steps 1 and 2 are no longer necessary.
>
>     Cheers,
>     Paul
>
>     --
>
>     Paul Eggleton
>     Intel Open Source Technology Centre
>     _______________________________________________
>     yocto mailing list
>     yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>     https://lists.yoctoproject.org/listinfo/yocto
>
>
>
>
> --
> *Thanks & Regards,*
> *Sandeep G R*
>
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

end of thread, other threads:[~2013-10-29 20:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-29  7:03 Openvswitch integration in yocto sonia verma
2013-10-29 10:11 ` Paul Eggleton
2013-10-29 17:31   ` Sandeep G.R
2013-10-29 20:24     ` Gary Thomas

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.