[yocto] [yocto-autobuilder][PATCH 1/2] BuildImages.py: skip uclibc with core version >= 9

Bill Randle william.c.randle at intel.com
Tue Aug 2 13:53:31 PDT 2016


Starting with oe-core version 9, we don't need to build uclibc anymore.

[YOCTO #10020]

Signed-off-by: Bill Randle <william.c.randle at intel.com>
---
 lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py b/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py
index 9ea350f..cb011ba 100644
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py
+++ b/lib/python2.7/site-packages/autobuilder/buildsteps/BuildImages.py
@@ -120,7 +120,7 @@ class BuildImages(BitbakeShellCommand):
                 self.finished(SUCCESS)
                 self.description = ["Skipping no-x11 Build"]
             elif self.layerversion_core is not None \
-               and int(self.layerversion_core) < 8 \
+               and int(self.layerversion_core) != 8 \
                and 'uclibc' in self.localconf:
                 self.finished(SUCCESS)
                 self.description = ["Skipping uclibc Build"]
-- 
2.5.5




More information about the yocto mailing list