All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] How does an offline build work?
@ 2008-06-04 20:44 Arun Reddy
  2008-06-04 21:10 ` Peter Korsgaard
  2008-06-04 21:26 ` Bernhard Fischer
  0 siblings, 2 replies; 4+ messages in thread
From: Arun Reddy @ 2008-06-04 20:44 UTC (permalink / raw)
  To: buildroot

I was curious as to how an offline build works.

When I first starting using Buildroot, I downloaded a snapshot for that day.
As I used that same snapshot for about a month, I would run into different
Buildroot issues, which came up whenever new changes were implemented. I
assumed that whenever I typed "make" Buildroot is automatically being
updated with those changes which could be affecting certain things.

I am now using Subversion access so I can update the source tree whenever I
want, but if I were to go back to using the Buildroot snapshot image, will
doing an offline build "make source" allow me to do a build without
Buildroot being updated? Or is it just a way for all the files, packages,
etc, to be downloaded first so that I can continue the build in a place
where I do not have network access?

Could someone clarify this? The Buildroot documentation doesn't have a
detailed explanation on how the offline build is supposed to work. Thank
you!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://busybox.net/lists/buildroot/attachments/20080604/6894a949/attachment.htm 

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

* [Buildroot] How does an offline build work?
  2008-06-04 20:44 [Buildroot] How does an offline build work? Arun Reddy
@ 2008-06-04 21:10 ` Peter Korsgaard
  2008-06-04 21:26 ` Bernhard Fischer
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2008-06-04 21:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Arun" == Arun Reddy <reddyac@gmail.com> writes:

Hi,

 Arun> I was curious as to how an offline build works.  When I first
 Arun> starting using Buildroot, I downloaded a snapshot for that
 Arun> day. As I used that same snapshot for about a month, I would
 Arun> run into different Buildroot issues, which came up whenever new
 Arun> changes were implemented. I assumed that whenever I typed
 Arun> "make" Buildroot is automatically being updated with those
 Arun> changes which could be affecting certain things.

Buildroot itself never gets updated by running make.

 Arun> I am now using Subversion access so I can update the source
 Arun> tree whenever I want, but if I were to go back to using the
 Arun> Buildroot snapshot image, will doing an offline build "make
 Arun> source" allow me to do a build without Buildroot being updated?
 Arun> Or is it just a way for all the files, packages, etc, to be
 Arun> downloaded first so that I can continue the build in a place
 Arun> where I do not have network access?

make source downloads the tarballs (E.G. source code) of all the
enabled packages into the download directory (dl by default). It is
indeed meant for offline use, E.G. you connect to the internet and run
make source, and once it is completed you will have all the needed
tarballs in your download directory and you can do the build without
network access.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] How does an offline build work?
  2008-06-04 20:44 [Buildroot] How does an offline build work? Arun Reddy
  2008-06-04 21:10 ` Peter Korsgaard
@ 2008-06-04 21:26 ` Bernhard Fischer
  2008-06-04 22:26   ` Arun Reddy
  1 sibling, 1 reply; 4+ messages in thread
From: Bernhard Fischer @ 2008-06-04 21:26 UTC (permalink / raw)
  To: buildroot

On Wed, Jun 04, 2008 at 01:44:56PM -0700, Arun Reddy wrote:

>I am now using Subversion access so I can update the source tree whenever I
>want, but if I were to go back to using the Buildroot snapshot image, will
>doing an offline build "make source" allow me to do a build without
>Buildroot being updated? 

offline has nothing to do with this.

>                         Or is it just a way for all the files, packages,
>etc, to be downloaded first so that I can continue the build in a place
>where I do not have network access?

yes.

>Could someone clarify this? The Buildroot documentation doesn't have a
>detailed explanation on how the offline build is supposed to work. Thank
>you!

It may not be detailed but answers all you asked above.
$ make help

and read everything (at least below "Miscellaneous:"). Twice. :)
And then, right in the mentioned README the above is documentend
extensively.

HTH,

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

* [Buildroot] How does an offline build work?
  2008-06-04 21:26 ` Bernhard Fischer
@ 2008-06-04 22:26   ` Arun Reddy
  0 siblings, 0 replies; 4+ messages in thread
From: Arun Reddy @ 2008-06-04 22:26 UTC (permalink / raw)
  To: buildroot

Thank you for the explanations. Looks like a snapshot will remain as it is
which is good news.

On Wed, Jun 4, 2008 at 2:26 PM, Bernhard Fischer <rep.dot.nop@gmail.com>
wrote:

> On Wed, Jun 04, 2008 at 01:44:56PM -0700, Arun Reddy wrote:
>
> >I am now using Subversion access so I can update the source tree whenever
> I
> >want, but if I were to go back to using the Buildroot snapshot image, will
> >doing an offline build "make source" allow me to do a build without
> >Buildroot being updated?
>
> offline has nothing to do with this.
>
> >                         Or is it just a way for all the files, packages,
> >etc, to be downloaded first so that I can continue the build in a place
> >where I do not have network access?
>
> yes.
>
> >Could someone clarify this? The Buildroot documentation doesn't have a
> >detailed explanation on how the offline build is supposed to work. Thank
> >you!
>
> It may not be detailed but answers all you asked above.
> $ make help
>
> and read everything (at least below "Miscellaneous:"). Twice. :)
> And then, right in the mentioned README the above is documentend
> extensively.
>
> HTH,
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://busybox.net/lists/buildroot/attachments/20080604/c03a2467/attachment.htm 

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

end of thread, other threads:[~2008-06-04 22:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-04 20:44 [Buildroot] How does an offline build work? Arun Reddy
2008-06-04 21:10 ` Peter Korsgaard
2008-06-04 21:26 ` Bernhard Fischer
2008-06-04 22:26   ` Arun Reddy

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.