aboutsummaryrefslogtreecommitdiffstats
path: root/conf/bitbake.conf
AgeCommit message (Collapse)Author
2024-01-07bitbake.conf: add missing CACHE settingVasyl Vavrychuk
Without it bitbake fails with ERROR: Please ensure CACHE is set to the cache directory for BitBake to use Signed-off-by: Vasyl Vavrychuk <vvavrychuk@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2023-12-13bitbake.conf remove duplicate PERSISTENT_DIRJose Quaresma
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-09-14bitbake.conf: fix vars_from_file() callMartin Jansa
The reference to this function was dropped from BBHandler.py in: https://git.openembedded.org/bitbake/commit/?id=aaa5292ef96ea27f505bc5c5a4b1eb4f497ed061 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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