* adding packages in my Yocto
@ 2012-08-21 8:26 aaryak gautam
2012-08-21 16:01 ` Jeff Osier-Mixon
0 siblings, 1 reply; 9+ messages in thread
From: aaryak gautam @ 2012-08-21 8:26 UTC (permalink / raw)
To: yocto
[-- Attachment #1: Type: text/plain, Size: 384 bytes --]
Hello
I am a hobbyist and quite new to both Linux and Yocto.
I had already compiled my Yocto kernel for I.MX23 successfully.
But I want to add few packages.
Like if i want to have ffmpeg in my yocto,how should I add it?
I have gone through the documentation,but could not understand.
can you help me out?
I am using Bitbake core-image-minimal , not sato.
Thank You.
[-- Attachment #2: Type: text/html, Size: 432 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 8:26 adding packages in my Yocto aaryak gautam
@ 2012-08-21 16:01 ` Jeff Osier-Mixon
2012-08-21 16:16 ` Robert P. J. Day
2012-08-21 16:21 ` Stewart, David C
0 siblings, 2 replies; 9+ messages in thread
From: Jeff Osier-Mixon @ 2012-08-21 16:01 UTC (permalink / raw)
To: aaryak gautam; +Cc: Yocto Project
Hi - please take a look at the FAQ here: https://wiki.yoctoproject.org/wiki/FAQ
Near the bottom there are some technical answers, one of which is how
to add a single package:
Q: How can I add a package to my project?
A: As with any complex system, the real answer is it depends, but of
course that is not very helpful. The simplest method for adding a
single package to your build is to add a line like this to
conf/local.conf:
IMAGE_INSTALL_append += " package"
Use your own package name in place of package. Note the leading space
before the package name.
For more information, read this chapter in the Yocto Project
Development Manual
(http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#usingpoky-extend-addpkg).
I also highly recommend trying out the Hob interface, as it makes the
whole system easier to understand. I like to make changes in the Hob
and then examine those changes in the resulting configuration files to
better understand the system at work.
Hope this helps!
On Tue, Aug 21, 2012 at 1:26 AM, aaryak gautam <aaryak.gautam@gmail.com> wrote:
> Hello
>
> I am a hobbyist and quite new to both Linux and Yocto.
> I had already compiled my Yocto kernel for I.MX23 successfully.
> But I want to add few packages.
> Like if i want to have ffmpeg in my yocto,how should I add it?
> I have gone through the documentation,but could not understand.
>
> can you help me out?
> I am using Bitbake core-image-minimal , not sato.
>
>
> Thank You.
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
--
Jeff Osier-Mixon http://jefro.net/blog
Yocto Project Community Manager @Intel http://yoctoproject.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:01 ` Jeff Osier-Mixon
@ 2012-08-21 16:16 ` Robert P. J. Day
2012-08-21 16:34 ` Paul Eggleton
2012-08-21 16:21 ` Stewart, David C
1 sibling, 1 reply; 9+ messages in thread
From: Robert P. J. Day @ 2012-08-21 16:16 UTC (permalink / raw)
To: Jeff Osier-Mixon; +Cc: Yocto Project, aaryak gautam
On Tue, 21 Aug 2012, Jeff Osier-Mixon wrote:
> Hi - please take a look at the FAQ here: https://wiki.yoctoproject.org/wiki/FAQ
>
> Near the bottom there are some technical answers, one of which is how
> to add a single package:
>
> Q: How can I add a package to my project?
>
> A: As with any complex system, the real answer is it depends, but of
> course that is not very helpful. The simplest method for adding a
> single package to your build is to add a line like this to
> conf/local.conf:
>
> IMAGE_INSTALL_append += " package"
grrrrrr ... ^ "="
the "+=" is redundant.
rday
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:01 ` Jeff Osier-Mixon
2012-08-21 16:16 ` Robert P. J. Day
@ 2012-08-21 16:21 ` Stewart, David C
2012-08-23 5:39 ` aaryak gautam
1 sibling, 1 reply; 9+ messages in thread
From: Stewart, David C @ 2012-08-21 16:21 UTC (permalink / raw)
To: Jeff Osier-Mixon, aaryak gautam; +Cc: Yocto Project
Good advice. A quick check of openembedded-core shows that gst-ffmpeg appears to be one of the packages available. Yes, definitely check the hob.
>-----Original Message-----
>From: yocto-bounces@yoctoproject.org [mailto:yocto-
>bounces@yoctoproject.org] On Behalf Of Jeff Osier-Mixon
>Sent: Tuesday, August 21, 2012 9:01 AM
>To: aaryak gautam
>Cc: Yocto Project
>Subject: Re: [yocto] adding packages in my Yocto
>
>Hi - please take a look at the FAQ here:
>https://wiki.yoctoproject.org/wiki/FAQ
>
>Near the bottom there are some technical answers, one of which is how
>to add a single package:
>
>Q: How can I add a package to my project?
>
>A: As with any complex system, the real answer is it depends, but of
>course that is not very helpful. The simplest method for adding a
>single package to your build is to add a line like this to
>conf/local.conf:
>
> IMAGE_INSTALL_append += " package"
>
>Use your own package name in place of package. Note the leading space
>before the package name.
>For more information, read this chapter in the Yocto Project
>Development Manual
>(http://www.yoctoproject.org/docs/current/dev-manual/dev-
>manual.html#usingpoky-extend-addpkg).
>
>I also highly recommend trying out the Hob interface, as it makes the
>whole system easier to understand. I like to make changes in the Hob
>and then examine those changes in the resulting configuration files to
>better understand the system at work.
>
>Hope this helps!
>
>On Tue, Aug 21, 2012 at 1:26 AM, aaryak gautam <aaryak.gautam@gmail.com>
>wrote:
>> Hello
>>
>> I am a hobbyist and quite new to both Linux and Yocto.
>> I had already compiled my Yocto kernel for I.MX23 successfully.
>> But I want to add few packages.
>> Like if i want to have ffmpeg in my yocto,how should I add it?
>> I have gone through the documentation,but could not understand.
>>
>> can you help me out?
>> I am using Bitbake core-image-minimal , not sato.
>>
>>
>> Thank You.
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>>
>
>
>
>--
>Jeff Osier-Mixon http://jefro.net/blog
>Yocto Project Community Manager @Intel http://yoctoproject.org
>_______________________________________________
>yocto mailing list
>yocto@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:16 ` Robert P. J. Day
@ 2012-08-21 16:34 ` Paul Eggleton
2012-08-21 16:51 ` Robert P. J. Day
0 siblings, 1 reply; 9+ messages in thread
From: Paul Eggleton @ 2012-08-21 16:34 UTC (permalink / raw)
To: yocto
On Tuesday 21 August 2012 12:16:26 Robert P. J. Day wrote:
> On Tue, 21 Aug 2012, Jeff Osier-Mixon wrote:
> > Hi - please take a look at the FAQ here:
> > https://wiki.yoctoproject.org/wiki/FAQ
> >
> > Near the bottom there are some technical answers, one of which is how
> > to add a single package:
> >
> > Q: How can I add a package to my project?
> >
> > A: As with any complex system, the real answer is it depends, but of
> > course that is not very helpful. The simplest method for adding a
> > single package to your build is to add a line like this to
> >
> > conf/local.conf:
> > IMAGE_INSTALL_append += " package"
>
> grrrrrr ... ^ "="
>
> the "+=" is redundant.
Fixed.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:34 ` Paul Eggleton
@ 2012-08-21 16:51 ` Robert P. J. Day
2012-08-21 17:13 ` Paul Eggleton
2012-08-23 17:15 ` Jeff Osier-Mixon
0 siblings, 2 replies; 9+ messages in thread
From: Robert P. J. Day @ 2012-08-21 16:51 UTC (permalink / raw)
To: Paul Eggleton; +Cc: yocto
On Tue, 21 Aug 2012, Paul Eggleton wrote:
> On Tuesday 21 August 2012 12:16:26 Robert P. J. Day wrote:
> > On Tue, 21 Aug 2012, Jeff Osier-Mixon wrote:
> > > Hi - please take a look at the FAQ here:
> > > https://wiki.yoctoproject.org/wiki/FAQ
> > >
> > > Near the bottom there are some technical answers, one of which is how
> > > to add a single package:
> > >
> > > Q: How can I add a package to my project?
> > >
> > > A: As with any complex system, the real answer is it depends, but of
> > > course that is not very helpful. The simplest method for adding a
> > > single package to your build is to add a line like this to
> > >
> > > conf/local.conf:
> > > IMAGE_INSTALL_append += " package"
> >
> > grrrrrr ... ^ "="
> >
> > the "+=" is redundant.
>
> Fixed.
if there's no objection, i added how to add multiple packages as
well, just below that.
rday
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:51 ` Robert P. J. Day
@ 2012-08-21 17:13 ` Paul Eggleton
2012-08-23 17:15 ` Jeff Osier-Mixon
1 sibling, 0 replies; 9+ messages in thread
From: Paul Eggleton @ 2012-08-21 17:13 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: yocto
On Tuesday 21 August 2012 12:51:41 Robert P. J. Day wrote:
> On Tue, 21 Aug 2012, Paul Eggleton wrote:
> > On Tuesday 21 August 2012 12:16:26 Robert P. J. Day wrote:
> > > On Tue, 21 Aug 2012, Jeff Osier-Mixon wrote:
> > > > Hi - please take a look at the FAQ here:
> > > > https://wiki.yoctoproject.org/wiki/FAQ
> > > >
> > > > Near the bottom there are some technical answers, one of which is how
> > > > to add a single package:
> > > >
> > > > Q: How can I add a package to my project?
> > > >
> > > > A: As with any complex system, the real answer is it depends, but of
> > > > course that is not very helpful. The simplest method for adding a
> > > > single package to your build is to add a line like this to
> > > >
> > > > conf/local.conf:
> > > > IMAGE_INSTALL_append += " package"
> > >
> > > grrrrrr ... ^ "="
> > >
> > > the "+=" is redundant.
> >
> > Fixed.
>
> if there's no objection, i added how to add multiple packages as
> well, just below that.
Looks good to me, thanks.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:21 ` Stewart, David C
@ 2012-08-23 5:39 ` aaryak gautam
0 siblings, 0 replies; 9+ messages in thread
From: aaryak gautam @ 2012-08-23 5:39 UTC (permalink / raw)
To: Stewart, David C; +Cc: Yocto Project
[-- Attachment #1: Type: text/plain, Size: 2698 bytes --]
Thanks to you all for helping me out there.
On Tue, Aug 21, 2012 at 9:51 PM, Stewart, David C <david.c.stewart@intel.com
> wrote:
> Good advice. A quick check of openembedded-core shows that gst-ffmpeg
> appears to be one of the packages available. Yes, definitely check the hob.
>
> >-----Original Message-----
> >From: yocto-bounces@yoctoproject.org [mailto:yocto-
> >bounces@yoctoproject.org] On Behalf Of Jeff Osier-Mixon
> >Sent: Tuesday, August 21, 2012 9:01 AM
> >To: aaryak gautam
> >Cc: Yocto Project
> >Subject: Re: [yocto] adding packages in my Yocto
> >
> >Hi - please take a look at the FAQ here:
> >https://wiki.yoctoproject.org/wiki/FAQ
> >
> >Near the bottom there are some technical answers, one of which is how
> >to add a single package:
> >
> >Q: How can I add a package to my project?
> >
> >A: As with any complex system, the real answer is it depends, but of
> >course that is not very helpful. The simplest method for adding a
> >single package to your build is to add a line like this to
> >conf/local.conf:
> >
> > IMAGE_INSTALL_append += " package"
> >
> >Use your own package name in place of package. Note the leading space
> >before the package name.
> >For more information, read this chapter in the Yocto Project
> >Development Manual
> >(http://www.yoctoproject.org/docs/current/dev-manual/dev-
> >manual.html#usingpoky-extend-addpkg).
> >
> >I also highly recommend trying out the Hob interface, as it makes the
> >whole system easier to understand. I like to make changes in the Hob
> >and then examine those changes in the resulting configuration files to
> >better understand the system at work.
> >
> >Hope this helps!
> >
> >On Tue, Aug 21, 2012 at 1:26 AM, aaryak gautam <aaryak.gautam@gmail.com>
> >wrote:
> >> Hello
> >>
> >> I am a hobbyist and quite new to both Linux and Yocto.
> >> I had already compiled my Yocto kernel for I.MX23 successfully.
> >> But I want to add few packages.
> >> Like if i want to have ffmpeg in my yocto,how should I add it?
> >> I have gone through the documentation,but could not understand.
> >>
> >> can you help me out?
> >> I am using Bitbake core-image-minimal , not sato.
> >>
> >>
> >> Thank You.
> >> _______________________________________________
> >> yocto mailing list
> >> yocto@yoctoproject.org
> >> https://lists.yoctoproject.org/listinfo/yocto
> >>
> >
> >
> >
> >--
> >Jeff Osier-Mixon http://jefro.net/blog
> >Yocto Project Community Manager @Intel http://yoctoproject.org
> >_______________________________________________
> >yocto mailing list
> >yocto@yoctoproject.org
> >https://lists.yoctoproject.org/listinfo/yocto
>
[-- Attachment #2: Type: text/html, Size: 4075 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: adding packages in my Yocto
2012-08-21 16:51 ` Robert P. J. Day
2012-08-21 17:13 ` Paul Eggleton
@ 2012-08-23 17:15 ` Jeff Osier-Mixon
1 sibling, 0 replies; 9+ messages in thread
From: Jeff Osier-Mixon @ 2012-08-23 17:15 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: Paul Eggleton, yocto
[-- Attachment #1: Type: text/plain, Size: 386 bytes --]
On Tue, Aug 21, 2012 at 9:51 AM, Robert P. J. Day <rpjday@crashcourse.ca>wrote:
>
> if there's no objection, i added how to add multiple packages as
> well, just below that.
>
No objection at all - we set it up as a wiki just for that purpose, thanks
for adding
--
Jeff Osier-Mixon http://jefro.net/blog
Yocto Project Community Manager @Intel http://yoctoproject.org
[-- Attachment #2: Type: text/html, Size: 892 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-08-23 17:15 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-21 8:26 adding packages in my Yocto aaryak gautam
2012-08-21 16:01 ` Jeff Osier-Mixon
2012-08-21 16:16 ` Robert P. J. Day
2012-08-21 16:34 ` Paul Eggleton
2012-08-21 16:51 ` Robert P. J. Day
2012-08-21 17:13 ` Paul Eggleton
2012-08-23 17:15 ` Jeff Osier-Mixon
2012-08-21 16:21 ` Stewart, David C
2012-08-23 5:39 ` aaryak gautam
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.