[yocto] [AUTOBUILDER PATCH] Initial commit of Yocto Autobuilder Dev Docs

2014-09-22 Thread Elizabeth Flanagan
nd it somewhat useful. Development is occuring for the time being on Google Docs at: https://docs.google.com/document/d/1VeShmhDnqN27HXMX5emgmHFoK8Cu9SzVYilmGjtMTtI Elizabeth Flanagan (1): Initial Commit of Documentation docs/YoctoAutobuilderDevelopersDocument.html | 1 + docs/images/image0

[yocto] [PATCH][daisy] distro_alias.inc: update/sort alias information.

2014-04-21 Thread Elizabeth Flanagan
From: Beth Flanagan Added new package data and resorted per http://article.gmane.org/gmane.linux.embedded.poky/9253 Removed -native packages as distrodata handles them in OVERRIDES. However, meta packages and grub-efi are special and needs some handling within distrodata. I have a patch for thi

[yocto] [PATCH][daisy] distro_alias.inc: update/sort alias information.

2014-04-18 Thread Elizabeth Flanagan
From: Beth Flanagan Added new package data and resorted per http://article.gmane.org/gmane.linux.embedded.poky/9253 Signed-off-by: Beth Flanagan --- meta-yocto/conf/distro/include/distro_alias.inc | 25 +++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/me

[yocto] [AB PATCH 14/22] yoctogit.py: Fix timeouts.

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan We should really never need this big of a timeout, but poky-contrib (despite my continual kvetching) can be a large clone, or an autobuilder can have a large build directory and the mv across filesystems *which you should never do!* can go slow. So let's set this sufficently

[yocto] [AB PATCH 09/22] yoctogit.py: Stop passing in srcdir.

2014-03-19 Thread Elizabeth Flanagan
Don't pass in srcdir. Set it depending on mirrordir/method as a class level property. Signed-off-by: Elizabeth Flanagan --- .../buildbot/steps/source/yoctogit.py| 20 +++- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/lib/python2.7/site-pac

[yocto] [AB PATCH 22/22] yoctogit.py: sync on mv

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan On systems with very high load sometimes the system still thinks the build dir is there. I've only seen this once, but a sync here ensures that the system knows that build has been moved. Signed-off-by: Beth Flanagan --- .../buildbot/steps/source/yoctogit.py

[yocto] [AB PATCH 16/22] yoctogit.py: Set workdir within dovccmd

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan Ensure we're in the correct place by setting workdir in dovccmd. Signed-off-by: Beth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py| 4 1 file changed, 4 insertions(+) diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.

[yocto] [AB PATCH 20/22] yocto-start-autobuilder: Make sure janitor logging goes to a log file

2014-03-19 Thread Elizabeth Flanagan
From: Richard Purdie Currently logging from the janitor gets lost. Ensure it gets to a log file instead including anything to stderr. --- yocto-start-autobuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yocto-start-autobuilder b/yocto-start-autobuilder index b34a60d..7

[yocto] [AB PATCH 06/22] CheckOutLayers.py: Remove unset Props

2014-03-19 Thread Elizabeth Flanagan
We no longer set these trigger* props, so let's remove them. Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/buildsteps/CheckOutLayers.py | 4 1 file changed, 4 deletions(-) diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/CheckOutLayers.

[yocto] [AB PATCH 10/22] yoctogit.py: Check for mirror on incremental builds

2014-03-19 Thread Elizabeth Flanagan
We're assuming people are getting to incremental from full. This is a bad assumption. So, check for mirror in both. Signed-off-by: Elizabeth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pyth

[yocto] [AB PATCH 11/22] yoctogit.py: Use self.srcdir, not local srcdir construct.

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan Since we're now constructing the objects srcdir property, there is no need to use a local srcdir prop. Signed-off-by: Beth Flanagan --- .../buildbot/steps/source/yoctogit.py| 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --g

[yocto] [AB PATCH 12/22] yoctogit.py: movecopy should only move 'build'

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan Pin what movecopy moves to be 'build' and not workdir. This keeps people from doing stupid stuff like passing in a weird workdir. Signed-off-by: Beth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py| 4 +--- 1 file changed, 1 insertion(+),

[yocto] [AB PATCH 15/22] yoctogit.py: Set workdir for the class

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan Stop utilizing resetWorkdir, it just confuses things and is really not needed. Just set self.workdir for the class. This ignores the self.workdir passed in (which I intend on removing soon.) Signed-off-by: Beth Flanagan --- .../buildbot/steps/source/yoctogit.py

[yocto] [AB PATCH 21/22] buildslave-janitor: Add in try/except handling to make calls robust against failure

2014-03-19 Thread Elizabeth Flanagan
From: Richard Purdie There is a suspicion that the command can fail causing the janitor trash removal process to exit. This adds in some exception handling to deal with this. It include a timeout to stop it entering nasty loops. This combined with the previous patch should let us figure out what

[yocto] [AB PATCH 04/22] yoctogit.py: movecopy doesn't care if it's updateable

2014-03-19 Thread Elizabeth Flanagan
movecopy really shouldn't care if it's updatable or not. It should have an incremental callback in it to take care of that (it doesn't though, which is part of the problem!) Signed-off-by: Elizabeth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py

[yocto] [AB PATCH 05/22] yoctogit.py: movecopy needs an incremental callback

2014-03-19 Thread Elizabeth Flanagan
We need to do an incremental before we copy or else, we're essentially copying nothing. Signed-off-by: Elizabeth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/python2.7/site-packages/buildbot-

[yocto] [AB PATCH 03/22] BuildImages.py: core-image-basic name change support

2014-03-19 Thread Elizabeth Flanagan
Supports http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=b7f1cca517bbd4191828c6bae32e0c5041f1ff19 Signed-off-by: Elizabeth Flanagan --- .../site-packages/autobuilder/buildsteps/BuildImages.py | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/python2.7/site

[yocto] [AB PATCH 08/22] CheckOutLayers.py: Remove srcdir

2014-03-19 Thread Elizabeth Flanagan
We're removing srcdir from yoctogit.py. It causes way too many issues. Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/BuildSet.py | 2 -- lib/python2.7/site-packages/autobuilder/buildsteps/CheckOutLayers.py | 5 ++--- 2 files changed, 2 inser

[yocto] [AB PATCH 19/22] SetDest.py: Use new UI variables.

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan How we name releases is a lot more complex than the old UI could handle. This alligns us a bit more with what we actually do. Signed-off-by: Beth Flanagan --- lib/python2.7/site-packages/autobuilder/buildsteps/SetDest.py | 7 +-- 1 file changed, 5 insertions(+), 2 delet

[yocto] [AB PATCH 13/22] yoctogit.py: DRYing up some code

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan Remove duplicate code from movecopy and barecopy and add it to a new callback _srccopy. Signed-off-by: Beth Flanagan --- .../buildbot/steps/source/yoctogit.py | 73 +- 1 file changed, 30 insertions(+), 43 deletions(-) diff --git a/lib/pyth

[yocto] [AB PATCH 02/22] yoctogit.py: Fix cp construction from source to build

2014-03-19 Thread Elizabeth Flanagan
g any trailing "/" from self.repourl As repourl is used to construct the cp from source to build, that trailing slash, if it exists, causes the directory structure to not be correct (e.g. cp -R ./foo/ ./bar and cp -R ./foo ./bar don't do the same thing, obviously) Signed-off-by

[yocto] [AB PATCH 18/22] PublishArtifacts.py: Exclude genericx86-64 pre-1.5

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan We don't build it so we shouldn't publish it. Signed-off-by: Beth Flanagan --- .../autobuilder/buildsteps/PublishArtifacts.py| 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/

[yocto] [AB PATCH 07/22] yoctogit.py: pathExists returns a defered value.

2014-03-19 Thread Elizabeth Flanagan
bject outside of any of fetch/movecopy/barecopy functions (which also return defereds and you can't yield a defered in a defered) So, yield the generator object at the beginning, and save everyone the headache. Signed-off-by: Elizabeth Flanagan --- .../buildbot/steps/source/y

[yocto] [AB PATCH 00/22] Consolidated patch set.

2014-03-19 Thread Elizabeth Flanagan
py: change _srccopy fromdir to it's own construction PublishArtifacts.py: Exclude genericx86-64 pre-1.5 SetDest.py: Use new UI variables. yoctogit.py: sync on mv Elizabeth Flanagan (9): yoctogit.py: Fix cp construction from source to build BuildImages.py: core-image-basic name

[yocto] [AB PATCH 01/22] buildsets: add a new buildset to run builds on target

2014-03-19 Thread Elizabeth Flanagan
From: Stefan Stanacar Builds core-image-sato-sdk for each qemu arch and runs tests building sudoku/cvs/iptables. These do take a while, so they shouldn't be added to nightly! Signed-off-by: Stefan Stanacar --- .../nightly-qa-targetbuilds.conf | 26 ++ 1 fi

[yocto] [AB PATCH 17/22] yoctogit.py: change _srccopy fromdir to it's own construction

2014-03-19 Thread Elizabeth Flanagan
From: Beth Flanagan fromdir was using self.srcdir, but lets be a bit safe and use a variable we construct in the method. Signed-off-by: Beth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[yocto] [AUTOBUILDER][PATCH 3/4] yoctogit.py: movecopy needs an incremental callback

2014-03-10 Thread Elizabeth Flanagan
We need to do an incremental before we copy or else, we're essentially copying nothing. Signed-off-by: Elizabeth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/python2.7/site-packages/buildbot-

[yocto] [AUTOBUILDER][PATCH 1/4] BuildImages.py: core-image-basic name change support

2014-03-10 Thread Elizabeth Flanagan
Supports http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=b7f1cca517bbd4191828c6bae32e0c5041f1ff19 Signed-off-by: Elizabeth Flanagan --- .../site-packages/autobuilder/buildsteps/BuildImages.py | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/python2.7/site

[yocto] [AUTOBUILDER][PATCH 4/4] yoctogit.py: set workdirs in _fetch and _fullClone

2014-03-10 Thread Elizabeth Flanagan
our builddir. So, if we are doing a copy build, we fetch first in source and then copy (same with clone). Otherwise, we just default out to the old fetch/fullClone behavior. Signed-off-by: Elizabeth Flanagan --- .../buildbot/steps/source/yoctogit.py | 19 +++ 1 file

[yocto] [AUTOBUILDER][PATCH 2/4] yoctogit.py: movecopy doesn't care if it's updateable

2014-03-10 Thread Elizabeth Flanagan
movecopy really shouldn't care if it's updatable or not. It should have an incremental callback in it to take care of that (it doesn't though, which is part of the problem!) Signed-off-by: Elizabeth Flanagan --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py

[yocto] [AUTOBUILDER][PATCH] BuildImages.py: core-image-basic name change support

2014-03-10 Thread Elizabeth Flanagan
Supports http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=b7f1cca517bbd4191828c6bae32e0c5041f1ff19 Signed-off-by: Elizabeth Flanagan --- .../site-packages/autobuilder/buildsteps/BuildImages.py | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/python2.7/site

[yocto] [AUTOBUILDER][PATCH v2] yoctogit.py: Fix cp construction from source to build

2014-03-10 Thread Elizabeth Flanagan
g any trailing "/" from self.repourl As repourl is used to construct the cp from source to build, that trailing slash, if it exists, causes the directory structure to not be correct (e.g. cp -R ./foo/ ./bar and cp -R ./foo ./bar don't do the same thing, obviously) Signed-off-by

[yocto] [AUTOBUILDER][PATCH] yoctogit.py: remove trailing "/" is source dir

2014-03-10 Thread Elizabeth Flanagan
g any trailing "/" from self.repourl As repourl is used to construct the cp from source to build, that trailing slash, if it exists, causes the directory structure to not be correct (e.g. cp -R ./foo/ ./bar and cp -R ./foo ./bar don't do the same thing, obviously) Signed-off-by

[yocto] [AB PATCH 11/27] trigger.py: Allow wait and nowait triggers

2014-03-05 Thread Elizabeth Flanagan
From: Richard Purdie This is from RP. It's a little hacky, but gets around our broken parser. Signed-off-by: Elizabeth Flanagan Author: Richard Purdie --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/trigger.py| 15 +-- 1 file changed, 13 insertions(+), 2 deletions(-)

[yocto] [AB PATCH 23/27] BuildEclipsePlugin.py: Change location of build.

2014-03-05 Thread Elizabeth Flanagan
Now that yoctogit is checking this out in the right place, change where we look for setup.sh --- .../site-packages/autobuilder/buildsteps/BuildEclipsePlugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/BuildEcli

[yocto] [AB PATCH 26/27] fs.py: Bump default timeout

2014-03-05 Thread Elizabeth Flanagan
120 seconds is too little if we're doing a mv across filesystems. Signed-off-by: Elizabeth Flanagan --- .../buildbot_slave-0.8.8-py2.7.egg/buildslave/commands/fs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python2.7/site-packages/buildbot_slave-

[yocto] [AB PATCH 07/27] nightly.conf: Add additional parameters

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan This allows us to set the prefered kernel via the UI as well as supports additional release related parameters that are not currently supported by PublishArtifacts/SetDest. This also supports TriggerBuilds schedulerNames_nowait. This allows us to delay the schedulers of certa

[yocto] [AB PATCH 13/27] yocto-start/stop-autobuilder: start buildslave-janitor

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan This adds starting and stopping the buildslave janitor automatically. Signed-off-by: Beth Flanagan --- yocto-start-autobuilder | 24 ++-- yocto-stop-autobuilder | 41 +++-- 2 files changed, 45 insertions(+), 20 deleti

[yocto] [AB PATCH 02/27] Add buildstep and buildset for oe-selftest script

2014-03-05 Thread Elizabeth Flanagan
From: Stefan Stanacar This will run the oe-selftest script which has been available in master for a while. The scripts run a series of bitbake tests and takes care of it's own config. Because some of the tests mess up with sstate we want to use the default sstate dir, so a nosstate option was add

[yocto] [AB PATCH 19/27] BuildSet.py: remove trailing spaces

2014-03-05 Thread Elizabeth Flanagan
Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/BuildSet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python2.7/site-packages/autobuilder/BuildSet.py b/lib/python2.7/site-packages/autobuilder/BuildSet.py index 19fbb00..6d318eb 100644

[yocto] [AB PATCH 18/27] yoctogit: Remove use of oe.path.exists()

2014-03-05 Thread Elizabeth Flanagan
From: Richard Purdie Signed-off-by: Richard Purdie Signed-off-by: Elizabeth Flanagan --- .../buildbot/steps/source/yoctogit.py | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg

[yocto] [AB PATCH 14/27] bin/buildslave-janitor: For fast-git checkouts

2014-03-05 Thread Elizabeth Flanagan
From: Richard Purdie This cleans up OGIT_TRASH_DIR and OGIT_MIRROR_DIR. Next few commits bring it into the infrastructure. Signed-off-by: Elizabeth Flanagan --- bin/buildslave-janitor | 125 + 1 file changed, 125 insertions(+) create mode

[yocto] [AB PATCH 17/27] BuildSet.py: Set workdir based on layer not order

2014-03-05 Thread Elizabeth Flanagan
workdir needs to be build/ for poky,oecore and build/layername for everything else. doing if via location in list is bad. Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/BuildSet.py | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib

[yocto] [AB PATCH 03/27] nightly-world-uclibc: uclibc target

2014-03-05 Thread Elizabeth Flanagan
[Yocto #5433] This should add a uclibc world build (which will probably have some issues at first) Signed-off-by: Elizabeth Flanagan --- buildset-config.master/nightly-world-uclibc.conf | 18 ++ 1 file changed, 18 insertions(+) create mode 100644 buildset-config.master/nightly

[yocto] [AB PATCH 01/27] buildsets: add a new buildset to run builds on target

2014-03-05 Thread Elizabeth Flanagan
From: Stefan Stanacar Builds core-image-sato-sdk for each qemu arch and runs tests building sudoku/cvs/iptables. These do take a while, so they shouldn't be added to nightly! Signed-off-by: Stefan Stanacar --- .../nightly-qa-targetbuilds.conf | 26 ++ 1 fi

[yocto] [AB PATCH 16/27] SyncPersistDB.py: First run failure correction

2014-03-05 Thread Elizabeth Flanagan
persistdb does not exist on first run. Allow pass if it does not exist. Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/buildsteps/SyncPersistDB.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/python2.7/site-packages/autobuilder

[yocto] [AB PATCH 05/27] Add mirror functionality to git fetcher

2014-03-05 Thread Elizabeth Flanagan
From: Richard Purdie Signed-off-by: Richard Purdie --- config/autobuilder.conf.example | 1 + lib/python2.7/site-packages/autobuilder/BuildSet.py | 4 .../autobuilder/buildsteps/CheckOutLayers.py | 5 +++-- .../buildbot/steps/source/yoctogit.py

[yocto] [AB PATCH 25/27] yocto-autobuilder-setup: set the correct bb version

2014-03-05 Thread Elizabeth Flanagan
Signed-off-by: Elizabeth Flanagan --- yocto-autobuilder-setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yocto-autobuilder-setup b/yocto-autobuilder-setup index 227d5f6..69c1e83 100644 --- a/yocto-autobuilder-setup +++ b/yocto-autobuilder-setup @@ -137,8 +137,8 @@ if

[yocto] [AB PATCH 09/27] Autobuilder.py: remove DEBUG code

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan No need for a global DEBUG hanging about. Signed-off-by: Beth Flanagan --- lib/python2.7/site-packages/autobuilder/Autobuilder.py | 4 1 file changed, 4 deletions(-) diff --git a/lib/python2.7/site-packages/autobuilder/Autobuilder.py b/lib/python2.7/site-packages/aut

[yocto] [AB PATCH 22/27] PublishArtifacts.py: genericx86-64 publish

2014-03-05 Thread Elizabeth Flanagan
genericx86_64 is not the artifact name. Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/buildsteps/PublishArtifacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/PublishArtifacts.py b/lib

[yocto] [AB PATCH 06/27] Autobuilder.py/Buildset.py: More sane parser/UI

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan The parser for Autobuilder.py didn't dive very deep on triggered builds. If it found one, it just grabbed it's properties and then displayed them on the UI. This allowed us to mix and match repos/branches/commits. The utility of mix and match was needed, but at this point, we

[yocto] [AB PATCH 24/27] PublishArtifacts.py: Change where we find eclipse artifacts

2014-03-05 Thread Elizabeth Flanagan
Now that we're checking things out correctly, set where we find eclipse artifacts. Signed-off-by: Elizabeth Flanagan --- .../site-packages/autobuilder/buildsteps/PublishArtifacts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python2.7/site-pac

[yocto] [AB PATCH 27/27] autobuilder: whitespace removal

2014-03-05 Thread Elizabeth Flanagan
sed --in-place 's/[[:space:]]\+$//' * for the autobuilder dir Signed-off-by: Elizabeth Flanagan --- .../site-packages/autobuilder/Autobuilder.py | 64 +++--- .../site-packages/autobuilder/BuildSet.py | 10 ++-- .../autobuilder/buildsteps/BuildEclips

[yocto] [AB PATCH 12/27] yoctogit: Don't use branch args for referenced clone

2014-03-05 Thread Elizabeth Flanagan
From: Richard Purdie Signed-off-by: Richard Purdie --- .../buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/source/yoctogit.py b/lib/py

[yocto] [AB PATCH 20/27] yoctogit.py: fix callbacks and instance attrs

2014-03-05 Thread Elizabeth Flanagan
-qt3 for meta-qt3. Also, this stops us from changing instance attrs. Setting instance attributes (like self.todir self.workdir) when you have a bunch of callbacks creates uglyness beyond belief. Don't use them. Use local vars. Signed-off-by: Elizabeth Flanagan --- .../buildbot/steps/s

[yocto] [AB PATCH 21/27] PublishArtifacts.py: Fix poky-tiny publish

2014-03-05 Thread Elizabeth Flanagan
There is a missing space between origin and dest for the cp. Signed-off-by: Elizabeth Flanagan --- lib/python2.7/site-packages/autobuilder/buildsteps/PublishArtifacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps

[yocto] [AB PATCH 10/27] BuildSet.py: Remove more debug code.

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan Removed some log.msg code. Signed-off-by: Beth Flanagan --- lib/python2.7/site-packages/autobuilder/BuildSet.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/python2.7/site-packages/autobuilder/BuildSet.py b/lib/python2.7/site-packages/autobuilder/BuildSet.py in

[yocto] [AB PATCH 08/27] CheckOutLayers.py/ResolveLayerHead.py: support simplified git

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan As the parser now no longer has complex git information properties this simplifies the code needed to resolve FETCH_HEAD's git hash and checkout layers. Signed-off-by: Beth Flanagan --- .../autobuilder/buildsteps/CheckOutLayers.py | 21 + .../autobuild

[yocto] [AB PATCH 00/27] Autobuilder patches

2014-03-05 Thread Elizabeth Flanagan
tly.conf: Add additional parameters CheckOutLayers.py/ResolveLayerHead.py: support simplified git Autobuilder.py: remove DEBUG code BuildSet.py: Remove more debug code. yocto-start/stop-autobuilder: start buildslave-janitor forms.html/layout.html: support simplified UI Elizabeth Flanagan (

[yocto] [AB PATCH 04/27] PrepPkgIndex.py: ln instead of cp

2014-03-05 Thread Elizabeth Flanagan
From: Beth Flanagan Since pkgindex is no longer using flock() this should be safe now. Signed-off-by: Beth Flanagan --- lib/python2.7/site-packages/autobuilder/buildsteps/PrepPkgIndex.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/python2.7/site-packages/autob

[yocto] [PATCH] poky.conf: Change SDK_NAME to include machine

2013-07-22 Thread Elizabeth Flanagan
From: Beth Flanagan When building for multiple arches, you can tromp all over the toolchain that lives in the deploy directory as the naming is not granular enough. This patch adds MACHINE to the SDK_NAME so that: poky-eglibc-arm-toolchain-gmae-1.4+snapshot-20130717.sh becomes: poky-eglibc-qe

[yocto] [PATCH] poky.conf: Change SDK_NAME to include machine

2013-07-22 Thread Elizabeth Flanagan
From: Beth Flanagan When building for multiple arches, you can tromp all over the toolchain that lives in the deploy directory as the naming is not granular enough. This patch adds MACHINE to the SDK_NAME so that: poky-eglibc-arm-toolchain-gmae-1.4+snapshot-20130717.sh becomes: poky-eglibc-qe

[yocto] [PATCH] poky.conf: Change SDK_NAME to include machine

2013-07-22 Thread Elizabeth Flanagan
From: Beth Flanagan When building for multiple arches, you can tromp all over the toolchain that lives in the deploy directory as the naming is not granular enough. This patch adds MACHINE to the SDK_NAME so that: poky-eglibc-arm-toolchain-gmae-1.4+snapshot-20130717.sh becomes: poky-eglibc-qe

[yocto] [PATCH] poky.conf: Change SDK_NAME to include machine

2013-07-22 Thread Elizabeth Flanagan
From: Beth Flanagan When building for multiple arches, you can tromp all over the toolchain that lives in the deploy directory as the naming is not granular enough. This patch adds MACHINE to the SDK_NAME so that: poky-eglibc-arm-toolchain-gmae-1.4+snapshot-20130717.sh becomes: poky-eglibc-qe

[yocto] [PATCH] poky.conf: Change SDK_NAME to include machine

2013-07-22 Thread elizabeth . flanagan
From: Beth Flanagan When building for multiple arches, you can tromp all over the toolchain that lives in the deploy directory as the naming is not granular enough. This patch adds MACHINE to the SDK_NAME so that: poky-eglibc-arm-toolchain-gmae-1.4+snapshot-20130717.sh becomes: poky-eglibc-qe

[yocto] [PATCH 1/1] poky.conf: Flipping vars for dylan release

2013-04-10 Thread Elizabeth Flanagan
DISTRO/SDKVERSION etc need to be flipped for dylan. This commit is valid only for the dylan branch. Signed-off-by: Elizabeth Flanagan --- meta-yocto/conf/distro/poky.conf |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto

[yocto] [PATCH 0/1] Dylan distro variable changes

2013-04-10 Thread Elizabeth Flanagan
the git repository at: git://git.yoctoproject.org/poky-contrib eflanagan/1.4 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=eflanagan/1.4 Elizabeth Flanagan (1): poky.conf: Flipping vars for dylan release meta-yocto/conf/distro/poky.conf |7 --- 1 file changed, 4

[yocto] 1.1_M1.rc2 Reminder.

2011-05-26 Thread Elizabeth Flanagan
I will be ready to roll a second release candidate for M1 on Friday, May 27th at 7pm Pacific. If you have fixes for the 1.1_M1 branch for rc2, please be sure to call them out in your pull requests. Thanks. --- Elizabeth Flanagan Yocto Project Release Engineer

[yocto] [Announcement] Bernard 5.0.1 Release

2011-05-25 Thread Elizabeth Flanagan
ease date. For the most up-to-date Yocto Project documentation, always refer to the Yocto Project website at http://www.yoctoproject.org. Thanks to everyone who helped with reporting and fixing bugs! ------ Elizabeth Flanagan Yocto Project Release Engi

[yocto] Autobuilder Change: Moving meta-toolchain-gmae builds

2011-05-25 Thread Elizabeth Flanagan
time substantially, however, it does mean that meta-toolchain-gmae needs to be picked up from the 02 server. If you have any questions or issues with this, please let me know. --- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing

[yocto] Status of 1.1_M1.rc1

2011-05-23 Thread Elizabeth Flanagan
slave/nightly-external/build/build/tmp/work/i686-nativesdk-pokysdk-linux/eglibc-nativesdk-2.12-r13/eglibc-2_12/libc' | make: *** [install] Error 2 | ERROR: oe_runmake failed --- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] Upcoming M1 RC cut off (now with new and improved process!)

2011-05-19 Thread Elizabeth Flanagan
1.1_M1 will occur only after the RC has been fully vetted by QA. --- Elizabeth Flanagan Yocto Project Release Engineer -BEGIN PGP PUBLIC KEY BLOCK- Version: GnuPG v1.4.10 (GNU/Linux) mQENBE3VnhEBCADHRXFx4DTFEYQ/uT96Tuy0L6xXiJW6J0sypDIFxWzPMxW33pef CNyuil80acWMUMT

Re: [yocto] Results from Yocto 1.0.1 Go/No-Go meeting: No-Go

2011-05-19 Thread Elizabeth Flanagan
1.1-preM1 build. --- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] RFC: Package exclusion

2011-05-03 Thread Elizabeth Flanagan
his work is going to overlap. Schedule some time for this week? -b Cheers, Paul -- --- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Personal git repositories

2011-04-27 Thread Elizabeth Flanagan
On 04/27/2011 11:14 AM, Joshua Lock wrote: On Wed, 2011-04-27 at 10:20 -0700, Elizabeth Flanagan wrote: A few notes, since I talked with Darren about this earlier. As one of the people in charge of maintaining the git repo, I would like to avoid having, as Darren suggested, a whole bunch of

Re: [yocto] Personal git repositories

2011-04-27 Thread Elizabeth Flanagan
similar gap in the development environment and if this idea would address that gap. Have you though about setting up a gitorious instance on git.yocto? I think that is a fantastic idea, it gets my vote. gitorious++ -- --- Elizabeth Flanagan Yocto Project Release Engineer _

Re: [yocto] Poky release is 5.0 "Bernard" confusion

2011-04-19 Thread Elizabeth Flanagan
On 04/19/2011 12:30 AM, Wolfgang Denk wrote: Dear Elizabeth Flanagan, In message<4dac90d3.3050...@intel.com> you wrote: Yes, there was a problem with what I assumed would be our bernard-5.0 release and the tag needed to be moved, which, while a messy practice, was the only ava

Re: [yocto] Poky release is 5.0 "Bernard" confusion

2011-04-18 Thread Elizabeth Flanagan
process. If you want, please feel free to open up a bug in bugzilla and assign it to me. As this was a relatively new process, I knew we'd hit some snags. This was one of them, and I'll make sure this is captured in our process so that we don't hit it again. Thanks for the fee

[yocto] Reminder for new release candidates.

2011-03-06 Thread Elizabeth Flanagan
mail later tonight with info on it. -b -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [ANNOUNCEMENT] Release of Board Support Packages for Intel Atom Processor E660

2011-03-03 Thread Elizabeth Flanagan
panel at the top of the screen are missing. Consequently, the functions that are accessible exclusively through that panel, such as switching between open applications and the desktop, do not work. You must close an application to get to the desktop. -- Elizabeth Flan

[yocto] Release Readiness Review for Bernard RC1

2011-02-28 Thread Elizabeth Flanagan
All, This morning we had the Yocto RC1 Release Readiness Review. Notes follow. Attendees: Beth, Dave, Jessica, Paul, Joshua, Julie, Saul, Jeff O, Richard Feature Status: * We are currently feature complete! Status of the Release Candidate Build: * Build infrastructure issues noted on week

[yocto] Status of release candidate: bernard-1.0rc1

2011-02-27 Thread Elizabeth Flanagan
his weekends RC generation, especially sgw and RP__ -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [PATCH 1/1] [BUG:650] Fix LICENSE parsing: license.bblcass

2011-02-25 Thread Elizabeth Flanagan
LICENSE parsing was missing some cases. Fixed Signed-off-by: Beth Flanagan --- meta/classes/license.bbclass |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index 97d4e4e..4e3cd1c 100644 --- a/meta/classes/lic

[yocto] [PATCH 0/1] Fix for parsing LICENSE

2011-02-25 Thread Elizabeth Flanagan
Fix for LICENSE parsing Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: eflanagan/license Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=eflanagan/license Thanks, Beth Flanagan --- Beth Flanagan (1): [BUG:650] Fix LICENSE parsing: license.bblcass meta/cl

[yocto] [ANNOUNCEMENT] Yocto Bernard 1.0 Release Candidate Readiness Review Meeting

2011-02-25 Thread Elizabeth Flanagan
Pacific Time 916-356-2663, Bridge: 3, Passcode: 9653542 -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] [REVISED PATCH 0/1] Removal of emenlow from poky core

2011-02-24 Thread Elizabeth Flanagan
Removing Emenlow from core as it is a BSP layer and should be built as such. Revised to correct LCONF_VERSION (now 4) and LAYER_CONF_VERSION (now, also 4) Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: eflanagan/emenlow Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h

[yocto] [PATCH 0/1] Removal of emenlow from poky core

2011-02-24 Thread Elizabeth Flanagan
Removing Emenlow from core as it is a BSP layer and should be built as such. Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: eflanagan/emenlow Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=eflanagan/emenlow Thanks, Beth Flanagan --- Beth Flanagan (1): Eme

[yocto] REMINDER: IRC Bug Scrub Tomorrow.

2011-02-23 Thread Elizabeth Flanagan
outstanding defects that are resolved. -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] Important autobuilder changes.

2011-02-23 Thread Elizabeth Flanagan
nk you for your patience with the recent autobuilder downtime and if you have any questions or issues, please, bring them to me as soon as possible. Thanks, -b -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto m

[yocto] [ANNOUNCEMENT] Bernard release candidate branch created.

2011-02-18 Thread Elizabeth Flanagan
pull should occur (master, bernard or both). Maintainers, please make sure that we keep these two code lines in as sync as possible. Branch: bernard Created at: c168c529367e123b557e915f5e5e49018c6de572 Thanks, -- Elizabeth Flanagan Yocto Project Release Engineer

[yocto] IRC Bugscrub Feb 17th

2011-02-18 Thread Elizabeth Flanagan
Tuesday February 22nd @ 17:30 GMT / Tue 09:30 PST / Wed 23rd 01:30 China -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [poky] autobuilders in flux today.

2011-02-17 Thread Elizabeth Flanagan
oky-autobuild: line 80: bitbake: > command not found > http://autobuilder.pokylinux.org:8010/builders/nightly-internal/builds/54/steps/shell_17/logs/stdio > > > Thanks, > -- Dexuan > > -Original Message- > From: poky-boun...@yoctoproject.org [mailto:poky-boun...@y

[yocto] autobuilders in flux today.

2011-02-16 Thread Elizabeth Flanagan
tobuilders will be in flux today while I bring builder3 online. Please don't kick off anything vital. Thanks -- Elizabeth Flanagan Yocto Project Release Engineer ___ yocto mailing list yocto@yoctoproject.org https://lists.y

[yocto] [PATCH 1/1] Doing uname without subprocess: buildstats.bbclass

2011-02-15 Thread Elizabeth Flanagan
Instead of using subprocess which is problematic, we should use platform instead. Signed-off-by: Beth Flanagan --- meta/classes/buildstats.bbclass | 11 +++ 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/meta/classes/buildstats.bbclass b/meta/classes/buildstats.bbclass

[yocto] [PATCH 0/1] uname -a equivalent via platform.uname()

2011-02-15 Thread Elizabeth Flanagan
Fixing buildstats to get the equivalent of uname -a. Avoiding subprocess due to issues. Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: eflanagan/buildstats Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=eflanagan/buildstats Thanks, Beth Flanagan --- Beth Fl

[yocto] Yocto IRC Bug days

2011-02-15 Thread Elizabeth Flanagan
nt lower. I or Saul will be the "bug caller" during these sessions. You can also send email or place a bugzilla comment directly for those bugs that are important to you or your project. Thanks for your support of the Yocto Project. ------ Elizabeth Flanagan

[yocto] [PATCH 1/1] Buildstats commit: buildstats.bbclass

2011-02-14 Thread Elizabeth Flanagan
Used to track some basic build metrics by build and task/event level. Signed-off-by: Beth Flanagan --- meta/classes/base.bbclass |1 + meta/classes/buildstats.bbclass | 194 +++ 2 files changed, 195 insertions(+), 0 deletions(-) create mode 100644

[yocto] [PATCH 0/1] Build statistics base

2011-02-14 Thread Elizabeth Flanagan
This is an initial commit of buildstats.bbclass. This generates a directory structure in build/tmp/buildstats which contains basic build statistics on a build run. What we capture: CPU usage on a build and task level Time run overall and for each tast Size of the uncompressed rootfs If the build

Re: [yocto] [poky] [Announcement] Laverne 4.0.1 Release

2011-02-07 Thread Elizabeth Flanagan
Wolfgang, It is indeed 4.0.1, the commits for 7fa2b1c and d1fd60f were incorrect (there was some confusion on my part as to the numbering scheme). These issues were corrected @ 45526f5. Sorry for any confusion. Regards, -- Elizabeth Flanagan Yocto Project Release Engineer On

[yocto] [Announcement] Laverne 4.0.1 Release

2011-02-04 Thread Elizabeth Flanagan
script, and fixes several other bugs. For a full list of bug fixes and known issues, please see the Laverne 4.0.1 Errata at the bottom of this email. Thanks to everyone who helped with reporting and fixing bugs! -- Elizabeth Flanagan Yocto Project Release Engineer

  1   2   >