All of lore.kernel.org
 help / color / mirror / Atom feed
* is there a bitbake command to *just* fetch all necessary packages?
@ 2012-06-18 20:10 Robert P. J. Day
  2012-06-18 21:08 ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Robert P. J. Day @ 2012-06-18 20:10 UTC (permalink / raw)
  To: BitBake developer list


  perhaps i'm just misreading the docs, but is there a bitbake
incantation that does *nothing* more than fetch the packages needed
for a target image?

  if i use "bitbake -c fetchall", the result is not just to fetch the
source, but to unload and patch it as well.  i don't want that, i want
whatever the magic is to just *fetch* and leave it at that.  or is
that simply not possible?

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] 4+ messages in thread

* Re: is there a bitbake command to *just* fetch all necessary packages?
  2012-06-18 20:10 is there a bitbake command to *just* fetch all necessary packages? Robert P. J. Day
@ 2012-06-18 21:08 ` Khem Raj
  2012-06-18 21:13   ` Mark Hatle
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2012-06-18 21:08 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: BitBake developer list

On Mon, Jun 18, 2012 at 1:10 PM, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
>
>  perhaps i'm just misreading the docs, but is there a bitbake
> incantation that does *nothing* more than fetch the packages needed
> for a target image?
>
>  if i use "bitbake -c fetchall", the result is not just to fetch the
> source, but to unload and patch it as well.

hmmm I thought it did just what it says 'fetch all' but as you say it
seems to do more hmm I am not sure if its intended behavior

 i don't want that, i want
> whatever the magic is to just *fetch* and leave it at that.  or is
> that simply not possible?
>
> rday
>
> --
>
> ========================================================================
> Robert P. J. Day                                 Ottawa, Ontario, CANADA
>                        http://crashcourse.ca
>
> Twitter:                                       http://twitter.com/rpjday
> LinkedIn:                               http://ca.linkedin.com/in/rpjday
> ========================================================================
>
> _______________________________________________
> bitbake-devel mailing list
> bitbake-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/bitbake-devel

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

* Re: is there a bitbake command to *just* fetch all necessary packages?
  2012-06-18 21:08 ` Khem Raj
@ 2012-06-18 21:13   ` Mark Hatle
  2012-06-18 22:28     ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Hatle @ 2012-06-18 21:13 UTC (permalink / raw)
  To: bitbake-devel

On 6/18/12 4:08 PM, Khem Raj wrote:
> On Mon, Jun 18, 2012 at 1:10 PM, Robert P. J. Day<rpjday@crashcourse.ca>  wrote:
>>
>>   perhaps i'm just misreading the docs, but is there a bitbake
>> incantation that does *nothing* more than fetch the packages needed
>> for a target image?
>>
>>   if i use "bitbake -c fetchall", the result is not just to fetch the
>> source, but to unload and patch it as well.
>
> hmmm I thought it did just what it says 'fetch all' but as you say it
> seems to do more hmm I am not sure if its intended behavior

In order for fetchall to work, there are a few dependencies that have to be 
executed as well..

But bitbake -c fetchall <target>, will fetch everything needed for the <target> 
recipe.  It will extract and build only the items necessary for fetch to work 
properly.

--Mark


>   i don't want that, i want
>> whatever the magic is to just *fetch* and leave it at that.  or is
>> that simply not possible?
>>
>> rday
>>
>> --
>>
>> ========================================================================
>> Robert P. J. Day                                 Ottawa, Ontario, CANADA
>>                         http://crashcourse.ca
>>
>> Twitter:                                       http://twitter.com/rpjday
>> LinkedIn:                               http://ca.linkedin.com/in/rpjday
>> ========================================================================
>>
>> _______________________________________________
>> bitbake-devel mailing list
>> bitbake-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/bitbake-devel
> _______________________________________________
> bitbake-devel mailing list
> bitbake-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/bitbake-devel




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

* Re: is there a bitbake command to *just* fetch all necessary packages?
  2012-06-18 21:13   ` Mark Hatle
@ 2012-06-18 22:28     ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2012-06-18 22:28 UTC (permalink / raw)
  To: Mark Hatle; +Cc: bitbake-devel

On Mon, 2012-06-18 at 16:13 -0500, Mark Hatle wrote:
> On 6/18/12 4:08 PM, Khem Raj wrote:
> > On Mon, Jun 18, 2012 at 1:10 PM, Robert P. J. Day<rpjday@crashcourse.ca>  wrote:
> >>
> >>   perhaps i'm just misreading the docs, but is there a bitbake
> >> incantation that does *nothing* more than fetch the packages needed
> >> for a target image?
> >>
> >>   if i use "bitbake -c fetchall", the result is not just to fetch the
> >> source, but to unload and patch it as well.
> >
> > hmmm I thought it did just what it says 'fetch all' but as you say it
> > seems to do more hmm I am not sure if its intended behavior
> 
> In order for fetchall to work, there are a few dependencies that have to be 
> executed as well..
> 
> But bitbake -c fetchall <target>, will fetch everything needed for the <target> 
> recipe.  It will extract and build only the items necessary for fetch to work 
> properly.

So just to be clear, the issues are git-native, potentially
subversion-native and also potentially pseudo-native getting built by
the wrapper. If you add those to ASSUME_PROVIDED, and skip the wrapper,
to avoid pseudo-native (or teach the wrapper to pass through -c fetchall
directly?) it will just fetch.

Cheers,

Richard




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

end of thread, other threads:[~2012-06-18 22:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-18 20:10 is there a bitbake command to *just* fetch all necessary packages? Robert P. J. Day
2012-06-18 21:08 ` Khem Raj
2012-06-18 21:13   ` Mark Hatle
2012-06-18 22:28     ` Richard Purdie

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.