Re: [yocto] Customize Number of Threads per Task?

2013-05-17 Thread Chris Larson
On Fri, May 17, 2013 at 1:53 AM, Paul Eggleton < paul.eggle...@linux.intel.com> wrote: > Hi Travis, > > On Friday 17 May 2013 00:40:51 Post, Travis wrote: > > I’ve written a bitbake class that adds a custom task in-between > do_configure > > and do_compile, called ‘do_send_to_remote’. Is there any

Re: [yocto] Customize Number of Threads per Task?

2013-05-17 Thread Paul Eggleton
Hi Travis, On Friday 17 May 2013 00:40:51 Post, Travis wrote: > I’ve written a bitbake class that adds a custom task in-between do_configure > and do_compile, called ‘do_send_to_remote’. Is there any way for Yocto to > allow only one instance of this task to run at a time? I know I can set > BB_NU

[yocto] Customize Number of Threads per Task?

2013-05-16 Thread Post, Travis
Hello: I’ve written a bitbake class that adds a custom task in-between do_configure and do_compile, called ‘do_send_to_remote’. Is there any way for Yocto to allow only one instance of this task to run at a time? I know I can set BB_NUMBER_THREADS = 1, but that will slow down everything. Is the