Re: [yocto] how to clean externalsrc?

2016-07-13 Thread Khem Raj
On Wed, Jul 13, 2016 at 7:53 AM, jags gediya wrote: > I am building external kernel source for imx7 board. > > I have done below changes for it, it is working fine while build. > > inherit externalsrc > EXTERNALSRC = /path/to/kernel/ > EXTERNALSRC_BUILD = /path/to/kernel > > but when i do clean th

[yocto] how to clean externalsrc?

2016-07-13 Thread jags gediya
I am building external kernel source for imx7 board. I have done below changes for it, it is working fine while build. inherit externalsrc EXTERNALSRC = /path/to/kernel/ EXTERNALSRC_BUILD = /path/to/kernel but when i do clean through bitbake, clean is not happening in externalsrc pointed direct

Re: [yocto] how to clean all?

2013-04-29 Thread Paul Eggleton
On Monday 29 April 2013 11:11:56 Gaurang Shastri wrote: > You can run "bitbake -c clean all" to clean everything or simply you can do > "rm -rf tmp/" directory and you will start from the beginning :) "bitbake -c clean all" won't work; the syntax would run -c clean on a recipe called "all" (which

Re: [yocto] how to clean all?

2013-04-28 Thread Gaurang Shastri
You can run "bitbake -c clean all" to clean everything or simply you can do "rm -rf tmp/" directory and you will start from the beginning :) //Gaurang Shastri On Sat, Apr 27, 2013 at 8:09 PM, Peter Tornel wrote: > Hello, > > Sometimes I feel the need to clean everything before building, but I

[yocto] how to clean all?

2013-04-28 Thread Peter Tornel
Hello, Sometimes I feel the need to clean everything before building, but I don't want tojust rm my project directory since I want to keep my conf files.  What bitbake command can I run to get back to a pristine state (same as after creating project directory and modifying my conf files)?  R

Re: [yocto] How to clean

2012-06-26 Thread Robert P. J. Day
On Tue, 26 Jun 2012, Stewart, David C wrote: > >From: yocto-boun...@yoctoproject.org [mailto:yocto- > >boun...@yoctoproject.org] On Behalf Of Dallas Clement > >Sent: Tuesday, June 26, 2012 12:21 PM > > > >I'd like to clean all of my build output so that I can rebuild with a > >different toolchain.

Re: [yocto] How to clean

2012-06-26 Thread Robert P. J. Day
On Tue, 26 Jun 2012, Dallas Clement wrote: > I'd like to clean all of my build output so that I can rebuild with a > different toolchain. What is the best way to clean without having to > redownload all of my source packages again? > > I can see that something like this > > $ bitbake -c cleanall

Re: [yocto] How to clean

2012-06-26 Thread Stewart, David C
>From: yocto-boun...@yoctoproject.org [mailto:yocto- >boun...@yoctoproject.org] On Behalf Of Dallas Clement >Sent: Tuesday, June 26, 2012 12:21 PM > >I'd like to clean all of my build output so that I can rebuild with a >different toolchain. What is the best way to clean without having to >redownl

Re: [yocto] How to clean

2012-06-26 Thread Khem Raj
On Tue, Jun 26, 2012 at 12:21 PM, Dallas Clement wrote: > > > can clean the kernel or an individual package.  I want to clean everything. by default DL_DIR lives outside TMPDIR so you can delete the TMPDIR ___ yocto mailing list yocto@yoctoproject.org h

[yocto] How to clean

2012-06-26 Thread Dallas Clement
I'd like to clean all of my build output so that I can rebuild with a different toolchain. What is the best way to clean without having to redownload all of my source packages again? I can see that something like this $ bitbake -c cleanall linux-yocto can clean the kernel or an individual packa