aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oe
AgeCommit message (Collapse)Author
2010-06-10lib/oe/patch.py: Dont import patches but symlink them insteadKhem Raj
* This patch removes the usage of quilt import <patch> instead it creasted a symlink to the patch in the patches directory and synthesizes the series file which otherwise would be done automatically by quilt import. * This should help a bit in reducing build time as it avoids copying of the patch and also other things that quilt import would otherwise do. * Tested by doing minimal-image on qemuarm. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Chris Larson <chris_larson@mentor.com> Acked-by: Roman I Khimov <khimov@altell.ru>
2010-06-10Add a rm -rf utility function and use it in packaged-staging.bbclassChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-06-09Revert "lib/oe/patch.py: Dont import patches but symlink them instead"Khem Raj
pushed wrong branch. It needs to be reviewed before pushing. This reverts commit 428c2de6d27dd49274b9884c3123b053c42af0ce.
2010-06-09lib/oe/patch.py: Dont import patches but symlink them insteadKhem Raj
* This patch removes the usage of quilt import <patch> instead it creasted a symlink to the patch in the patches directory and synthesizes the series file which otherwise would be done automatically by quilt import. * This should help a bit in reducing build time as it avoids copying of the patch and also other things that quilt import would otherwise do. * Tested by doing minimal-image on qemuarm. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-05-27oe.utils: added param_bool() methodEnrico Scholz
This new function works like dict's get() method but converts the returned value to a boolean. It is to be used to interpret e.g. 'apply=yes' parameters in SRC_URI. Moved from base.bbclass into lib/oe/utils.py -kergoth Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de> Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-05-23oe.patch: kill long standing annoying messages from the non-quilt patch ↵Chris Larson
application Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-24oe.path.relative: add missing importsChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-24Revert "oe.path.relative: switch to a different appraoch"Chris Larson
Drop this for now, seems to cause issues with python 2.5. This reverts commit 5c923fd35c369bae929fc0e110121abeaffab493.
2010-04-23oe.path.relative: switch to a different appraochChris Larson
Signed-off-by: Chris Larson <clarson@kergoth.com>
2010-04-23oe.path.relative: leverage os.path.relpath if availableChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-23oe.path.join: simplify a bitChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-23Initial move of common python bits into modules of the 'oe' python packageChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>