<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/bitbake, branch laverne</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=laverne</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=laverne'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2010-10-23T00:05:14+00:00</updated>
<entry>
<title>bitbake/fetch: When fetchers return errors, ensure any partial download is cleared</title>
<updated>2010-10-23T00:05:14+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-22T23:22:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7b6db199fabafa8c20156ebf0fd375d430fab05b'/>
<id>urn:sha1:7b6db199fabafa8c20156ebf0fd375d430fab05b</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/fetch: Make URL checking slightly less verbose (distracting with the sstate code)</title>
<updated>2010-10-22T18:13:59+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-22T13:31:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=59df74164d57a7adbcfad00d4c8e580275a4914d'/>
<id>urn:sha1:59df74164d57a7adbcfad00d4c8e580275a4914d</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>pseudo/fakeroot: Move the pseudo directory creation into bitbake</title>
<updated>2010-10-22T18:13:40+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-22T12:00:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=1ddda942bd6b8934360f5668aa9c47c0115fd179'/>
<id>urn:sha1:1ddda942bd6b8934360f5668aa9c47c0115fd179</id>
<content type='text'>
If sstate was used to accelerate a build, the pseudo directory might not have
been created leading to subsequent task failures.

Also, sstate packages were not being installed under pseudo context meaning
file permissions could have been lost.

Fix these problems by creating a FAKEROOTDIRS variable which bitbake ensures
exists before running tasks and running the appropriate setscene tasks under
fakeroot context.

Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/fetch/git: Ensure fullclone repositories are fully fetched</title>
<updated>2010-10-20T17:10:51+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-19T16:17:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=476242adc4a3745dd2f829380e530e15ec3c9a0a'/>
<id>urn:sha1:476242adc4a3745dd2f829380e530e15ec3c9a0a</id>
<content type='text'>
The git fetcher was failing to pull in new branches into a git
repository mirror tarball as the git fetch command being used didn't
add new remote branches.

This patch uses "git fetch --all" for fullclones to ensure any
new remote branches are cloned correctly.

Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/fetcher: Deal with a ton of different bugs</title>
<updated>2010-10-20T17:09:12+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-19T11:30:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=e9ef9424a3fea464c9d44465118ca043ed69303d'/>
<id>urn:sha1:e9ef9424a3fea464c9d44465118ca043ed69303d</id>
<content type='text'>
The more we try and patch up the fetcher code, the more things break. The
code blocks in question are practically unreadable and are full of corner
cases where fetching could fail. In summary the issues noticed included:

a) Always fetching strange broken urls from the premirror for "noclone"
   git repositories
b) Not creating or rewriting .md5 stamp files inconsistently
c) Always fetching git source mirror tarballs from the premirror even
   if they already exist but the checkout directory does now
d) Passing "None" values to os.access() and os.path.extsts() checks under
   certain circumstances
e) Not using fetched git mirror tarballs if the preexist and always
   try and fetch them.

This patch rewrites the sections of code in question to be simpler and
more readable, fixing the above problems and most likely other odd
corner cases.

Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/fetch/git.py: Fix git fetcher to correctly use mirror tarballs</title>
<updated>2010-10-20T17:09:01+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-18T23:12:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=fc9c11de286b0cff76c190a7ed892b7a2caae42c'/>
<id>urn:sha1:fc9c11de286b0cff76c190a7ed892b7a2caae42c</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake-runtask: Ensure logging settings take effect in the worker process (and pass verbose setting)</title>
<updated>2010-10-14T19:07:15+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-12T16:46:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=229b6630af72f2914d75ab6b0ba081b5feb25172'/>
<id>urn:sha1:229b6630af72f2914d75ab6b0ba081b5feb25172</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/runqueue: make the runtask program configurable</title>
<updated>2010-10-12T12:32:27+00:00</updated>
<author>
<name>Joshua Lock</name>
<email>josh@linux.intel.com</email>
</author>
<published>2010-10-08T15:54:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=812f8835d2590ceccb067bae79f06c253140d290'/>
<id>urn:sha1:812f8835d2590ceccb067bae79f06c253140d290</id>
<content type='text'>
Signed-off-by: Joshua Lock &lt;josh@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/build.py: Write logfiles on a per task basis, not per function</title>
<updated>2010-10-11T11:53:54+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-11T11:53:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=d14f9bf6c470907d77654a35b4b55f30bdc182ff'/>
<id>urn:sha1:d14f9bf6c470907d77654a35b4b55f30bdc182ff</id>
<content type='text'>
Per function logging made it hard to track down what was happening so
switch to logging on a per task basis.

[BUGID #383]

Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake-runtask: Ensure logging options are inherited from the parent</title>
<updated>2010-10-11T11:52:57+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-10-11T11:52:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=ff539b11acca9831b72f3bc951a6ef20cd293786'/>
<id>urn:sha1:ff539b11acca9831b72f3bc951a6ef20cd293786</id>
<content type='text'>
[BUGID #291]

Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
</feed>
