summaryrefslogtreecommitdiffstats
path: root/conf
AgeCommit message (Collapse)Author
2012-03-03bitbake: Convert getVar/getVarFlag(xxx, 1) -> (xxx, True)Richard Purdie
Using "1" with getVar is bad coding style and "True" is preferred. This patch is a sed over bitbake directory of the form: sed \ -e 's:\(\.getVar([^,()]*, \)1 *):\1True):g' \ -e 's:\(\.getVarFlag([^,()]*, [^,()]*, \)1 *):\1True):g' \ -i `grep -ril getVar *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-03-03conf/classes: Catch up with bb.data -> direct object access conversionRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2010-12-17bitbake.conf: use bb.utils.whichBernhard Reutner-Fischer
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2010-02-19Add PERSISTENT_DIR to bitbake.conf, as bb.fetch requires it or CACHE.Chris Larson
Signed-off-by: Chris Larson <clarson@mvista.com>
2009-07-23Update the minimal base.bbclass & bitbake.conf.Chris Larson
I could argue in favor of the removal of these entirely, as their usefulness is limited, and I've yet to see anyone use bitbake for anything without using OE as a base. It's something to consider, anyway, but this at least makes them parse without complaining. Signed-off-by: Chris Larson <clarson@mvista.com>
2006-09-08bitbake/trunk/bitbake: Do svn co's to a permanent directory (SVNDIR) to be ↵Holger Hans Peter Freyther
more similiar to the CVS fetcher Patch courtsey Paul Sokolovsky to address #1367 to have a permanent directory for subversion to ease updating of huge repositories.
2006-04-28bitbake.conf: force CVSROOT during cvs updateMarcin Juszkiewicz
2004-12-07Initial import.Chris Larson