aboutsummaryrefslogtreecommitdiffstats
path: root/conf
AgeCommit message (Collapse)Author
2020-04-24bitbake.conf: Drop unneeded variables from bitbake.confRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2017-04-05fetch/local: Drop FILESDIRRichard Purdie
This has long since been deprecated and is no longer used anywhere, FILESPATH is the commonly used varaible which offers much more flexibility. Remove the FILESDIR code and references from bitbake. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2015-06-19bitbake: Add explict getVar param for (non) expansionRichard Purdie
Rather than just use d.getVar(X), use the more explict d.getVar(X, False) since at some point in the future, having the default of expansion would be nice. This is the first step towards that. This patch was mostly made using the command: sed -e 's:\(getVar([^,()]*\)\s*):\1, False):g' -i `grep -ril getVar *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2015-05-23bitbake.conf: Set GITPKGV variableMike Looijmans
Set GITPKGV to mimic the meta-openembedded 'gitpkgv' class. This allows a recipe to simply set: PKGV="1.2+${GITPKGV}" And no longer needs to inherit gitpkgv class. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-08-24bitbake.conf: Drop unused MKTEMP* variablesRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-08-24bitbake.conf: Delete long-dead {FETCH, RESUME, UPDATE}COMMAND variablesRobert P. J. Day
Delete apparently long-obsolete variable settings in bitbake.conf. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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