Age | Commit message (Collapse) | Author | Files | |
---|---|---|---|---|
2012-07-26 | qemu.bbclass: Map the qemu binary name for powerpc64 | Khem Raj | 1 | |
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||||
2012-07-19 | Remove a number of unneeded import os/bb calls | Richard Purdie | 1 | |
The bb and os modules are always imported so having these extra import calls are a waste of space/execution time. They also set a bad example for people copy and pasting code so clean them up. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||||
2012-07-19 | Convert tab indentation in python functions into four-space | Richard Purdie | 1 | |
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||||
2012-03-22 | Fix common typoes "existant", "dependant" and variations | Robert P. J. Day | 1 | |
Fix a couple common typoes, all contained within comments so there should be no effect on functionality. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||||
2012-03-05 | meta: Convert getVar/getVarFlag(xxx, 1) -> (xxx, True) | Richard Purdie | 1 | |
Using "1" with getVar is bad coding style and "True" is preferred. This patch is a sed over the meta 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> | ||||
2011-11-10 | Convert to use direct access to the data store (instead of bb.data.*Var*()) | Richard Purdie | 1 | |
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||||
2010-08-13 | eglibc: import eglibc_2.12 recipe from OE | Nitin A Kamble | 1 | |
use http proto for svn checkout cosmetic cleanups to metadata Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> |