Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] Suggestion to improving buildroot download infra
@ 2017-11-15 14:04 Stefan Fröberg
  2017-11-15 14:50 ` Thomas Petazzoni
  2017-11-15 21:24 ` Arnout Vandecappelle
  0 siblings, 2 replies; 4+ messages in thread
From: Stefan Fröberg @ 2017-11-15 14:04 UTC (permalink / raw)
  To: buildroot

Hi,

Is there a way to integrate parallel wget download into buildroot?

That would greatly speed the downloading process when doing "make source"
and maybe even later all the downloading could be done in the 
background, even
when compiling some big package (for example, gentoo linux does that).

If I understand it correctly, there are at least two (if not including 
the crude & fork method)
ways to do parallel wget:

1. use xarg:

echo $URL_LIST | xargs -n 1 -P ${NUMBER_OF_PARALLEL_DOWNLOADS} wget

or 2. use GNU parallel

parallel -a $URL_LIST --jobs ${NUMBER_OF_PARALLEL_DOWNLOADS} wget

How exactly, does buildroot collect the download urls when doing example,
"make source" ? Does it collect them first into some list and then do 
wget -i list ?
Or does it just go each selected packet one-by-one and fetch the url for 
each?

-S-

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

end of thread, other threads:[~2017-11-15 21:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-15 14:04 [Buildroot] Suggestion to improving buildroot download infra Stefan Fröberg
2017-11-15 14:50 ` Thomas Petazzoni
2017-11-15 18:40   ` Stefan Fröberg
2017-11-15 21:24 ` Arnout Vandecappelle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox