<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openembedded-core.git/meta/recipes-devtools/installer, branch 2011-1</title>
<subtitle>Mirror of openembedded-core</subtitle>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/'/>
<entry>
<title>Fix powerpc term and provide more template for different arches</title>
<updated>2011-08-31T19:10:14+00:00</updated>
<author>
<name>Jessica Zhang</name>
<email>jessica.zhang@intel.com</email>
</author>
<published>2011-08-31T19:03:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=bf9e9961ec4e7b2d10f25b550b902df62b3939b1'/>
<id>bf9e9961ec4e7b2d10f25b550b902df62b3939b1</id>
<content type='text'>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Fix adt-installer for consistent naming for powerpc and add all arch template for installation"</title>
<updated>2011-08-31T19:10:01+00:00</updated>
<author>
<name>Jessica Zhang</name>
<email>jessica.zhang@intel.com</email>
</author>
<published>2011-08-31T19:03:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=13d713dccd7fedb5a223f1292227e177d7a44164'/>
<id>13d713dccd7fedb5a223f1292227e177d7a44164</id>
<content type='text'>
This reverts commit ae4ad20edbb6ea023155f7ae2b00871d479e370d.

Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit ae4ad20edbb6ea023155f7ae2b00871d479e370d.

Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[YOCTO #1396] Fix adt-installer for consistent naming for powerpc and add all arch template for installation</title>
<updated>2011-08-26T19:31:59+00:00</updated>
<author>
<name>Jessica Zhang</name>
<email>jessica.zhang@intel.com</email>
</author>
<published>2011-08-25T18:19:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=299402832cc461f2db58481ccbb1a3a8ac92a7d0'/>
<id>299402832cc461f2db58481ccbb1a3a8ac92a7d0</id>
<content type='text'>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>adt-installer: Removed the hard coded repo url.</title>
<updated>2011-08-24T01:23:14+00:00</updated>
<author>
<name>Lianhao Lu</name>
<email>lianhao.lu@intel.com</email>
</author>
<published>2011-08-19T05:14:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=125eae393a3448e1ff5f3c2cf782ed7b3aa23920'/>
<id>125eae393a3448e1ff5f3c2cf782ed7b3aa23920</id>
<content type='text'>
[YOCTO #1380] Removed the hard coded repo url in opkg configuration
files.

Signed-off-by: Lianhao Lu &lt;lianhao.lu@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[YOCTO #1380] Removed the hard coded repo url in opkg configuration
files.

Signed-off-by: Lianhao Lu &lt;lianhao.lu@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add umask task control</title>
<updated>2011-06-30T19:46:34+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@windriver.com</email>
</author>
<published>2011-06-22T04:56:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4'/>
<id>0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4</id>
<content type='text'>
Bitbake now allows the umask to be specified per task.  The
following tasks will have a umask of 022 set by default:

do_configure
do_compile
do_install
do_package
do_populate_sysroot
do_rootfs

do_configure and do_compile need a umask of 022 set because -many- recipes
directly copy generated files out of recipe's build directory.  Instead of
fixing each existing and future recipe, it was shown to be much easier to
just set the umask.

Signed-off-by: Mark Hatle &lt;mark.hatle@windriver.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bitbake now allows the umask to be specified per task.  The
following tasks will have a umask of 022 set by default:

do_configure
do_compile
do_install
do_package
do_populate_sysroot
do_rootfs

do_configure and do_compile need a umask of 022 set because -many- recipes
directly copy generated files out of recipe's build directory.  Instead of
fixing each existing and future recipe, it was shown to be much easier to
just set the umask.

Signed-off-by: Mark Hatle &lt;mark.hatle@windriver.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add adt repo checking</title>
<updated>2011-05-19T22:33:41+00:00</updated>
<author>
<name>Jessica Zhang</name>
<email>jessica.zhang@intel.com</email>
</author>
<published>2011-05-18T04:23:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=0004344116f816167d368d012d1d8aeaee1cb010'/>
<id>0004344116f816167d368d012d1d8aeaee1cb010</id>
<content type='text'>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>extract bitbake config setting into data_define, use more variables replacing hardcoded values</title>
<updated>2011-05-19T22:33:30+00:00</updated>
<author>
<name>Jessica Zhang</name>
<email>jessica.zhang@intel.com</email>
</author>
<published>2011-05-18T03:50:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=993a2367f881f1f4eaa10339cde93c7058660d67'/>
<id>993a2367f881f1f4eaa10339cde93c7058660d67</id>
<content type='text'>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jessica Zhang &lt;jessica.zhang@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>poky-default-revisions: move the SRCREV to recipe file</title>
<updated>2011-05-04T14:05:55+00:00</updated>
<author>
<name>Yu Ke</name>
<email>ke.yu@intel.com</email>
</author>
<published>2011-04-28T07:15:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=0a57bd226cdb8332707fa0f46fcf0b067f03701a'/>
<id>0a57bd226cdb8332707fa0f46fcf0b067f03701a</id>
<content type='text'>
in this case, those non poky distro can also use these recipe normally

Signed-off-by: Yu Ke &lt;ke.yu@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in this case, those non poky distro can also use these recipe normally

Signed-off-by: Yu Ke &lt;ke.yu@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>adt_installer_internal: Remove hardcoded Poky references</title>
<updated>2011-04-20T22:56:28+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-04-20T22:56:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=372f8c841f715d9e21e7cef4fd4106f1559795a8'/>
<id>372f8c841f715d9e21e7cef4fd4106f1559795a8</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>POKY_NATIVE_SYSROOT -&gt; OECORE_NATIVE_SYSROOT</title>
<updated>2011-04-20T17:47:31+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-04-20T16:55:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/openembedded-core.git/commit/?id=c056aeaa13549b404088e3d465f3b03443e5ab88'/>
<id>c056aeaa13549b404088e3d465f3b03443e5ab88</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
