<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.yoctoproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mhatle</id>
	<title>Yocto Project - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.yoctoproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mhatle"/>
	<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/Special:Contributions/Mhatle"/>
	<updated>2026-06-04T19:37:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.5</generator>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37028</id>
		<title>TipsAndTricks/UsingRPM</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37028"/>
		<updated>2018-03-15T17:52:23Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The RPM command allows for a number of query operations.  The format of the query operations can be used for a number things, such as debugging a package or even exporting information into another format, such as XML.&lt;br /&gt;
&lt;br /&gt;
First in order to perform a query, you want to tell the system to go into query mode:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You then need to add the option to tell it WHAT to query:&lt;br /&gt;
&lt;br /&gt;
To query a single package that has been installed into the database, just add the package name, such as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q bash&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query all of the installed packages in the system, add the &#039;-a&#039; option, such as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -a&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query a single package that is not yet installed, add &#039;-p &amp;lt;package name&amp;gt;&#039;&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query multiple packages, just list the packages after the -p:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm libc6-7-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can include lists of packages instead:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;echo &amp;quot;bash-3.0-r3.i386.rpm&amp;quot; &amp;gt; mymanifest.txt&#039;&#039;&lt;br /&gt;
 &#039;&#039;echo &amp;quot;libc6-7-r3.i386.rpm&amp;quot; &amp;gt;&amp;gt; mymanifest.txt&#039;&#039;&lt;br /&gt;
 &#039;&#039;rpm -q -p mymanifest.txt&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Note: there is a minimum size of the file for RPM to determine this is a manifest file.  So it&#039;s recommended if this is used in script to always include a header that says something like &amp;quot;# This is a manifest file&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above operations simply control the &#039;what&#039;, by default the system will just print the package name.  (Some versions will print the name and package architecture.)&lt;br /&gt;
&lt;br /&gt;
In order to select the exact items you want to query, you want to use the &#039;--queryformat&#039; (or &#039;--qf&#039;) to specify a format.  Such as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -p mymanifest.txt --qf &amp;quot;[%{NAME}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above duplicates the default.  The special characters or parts being used are:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[ ] - this indicates that it should be applied on each package or item (if the item being queried is an iterator, like a filelist.)  Including &#039;\n&#039; inside of the brackets means adding a line feed at the end of every item that is queried.&lt;br /&gt;
&lt;br /&gt;
%{...} -- this is how you specify the exact field to be queried.   To get a list of valid options, you can run: &#039;rpm --querytags&#039;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The format of %{...} also allows for select &#039;type&#039; conversions.  Some of the valid types are: octal, shescape, deptype, pgpsig, day, date, and others.&lt;br /&gt;
&lt;br /&gt;
For instance, the typical, &#039;rpm -q bash --requires&#039; is actually implemented as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q bash --qf &amp;quot;[%|VERBOSE?{%{REQUIREFLAGS:deptype}: }:{}|%{REQUIRENEVRS}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above indicate that based on the value &#039;VERBOSE&#039;, either %{REQUIREFLAGS:deptype} followed by either {} | %{REQUIRENEVRS}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| ? and other special operators exist to permit you to do some basic boolean cases.  See: /usr/lib/rpm/rpmpopt-* for a bunch of examples.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another popular example is how to export the whole DB to XML:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -qa --qf &amp;quot;[%{*:xml}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;*&#039; says to not only query the main thing, but also iterate over the matching entries (all of them), with the :xml indicating to dump the contents in XML format.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37026</id>
		<title>TipsAndTricks/UsingRPM</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37026"/>
		<updated>2018-03-15T17:51:17Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The RPM command allows for a number of query operations.  The format of the query operations can be used for a number things, such as debugging a package or even exporting information into another format, such as XML.&lt;br /&gt;
&lt;br /&gt;
First in order to perform a query, you want to tell the system to go into query mode:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You then need to add the option to tell it WHAT to query:&lt;br /&gt;
&lt;br /&gt;
To query a single package that has been installed into the database, just add the package name, such as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q bash&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query all of the installed packages in the system, add the &#039;-a&#039; option, such as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -a&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query a single package that is not yet installed, add &#039;-p &amp;lt;package name&amp;gt;&#039;&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query multiple packages, just list the packages after the -p:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm libc6-7-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can include lists of packages instead:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;echo &amp;quot;bash-3.0-r3.i386.rpm&amp;quot; &amp;gt; mymanifest.txt&#039;&#039;&lt;br /&gt;
 &#039;&#039;echo &amp;quot;libc6-7-r3.i386.rpm&amp;quot; &amp;gt;&amp;gt; mymanifest.txt&#039;&#039;&lt;br /&gt;
 &#039;&#039;rpm -q -p mymanifest.txt&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Note: there is a minimum size of the file for RPM to determine this is a manifest file.  So it&#039;s recommended if this is used in script to always include a header that says something like &amp;quot;# This is a manifest file&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above operations simply control the &#039;what&#039;, by default the system will just print the package name.  (Some versions will print the name and package architecture.)&lt;br /&gt;
&lt;br /&gt;
In order to select the exact items you want to query, you want to use the &#039;--queryformat&#039; (or &#039;--qf&#039;) to specify a format.  Such as:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;rpm -q -p mymanifest.txt --qf &amp;quot;[%{NAME}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above duplicates the default.  The special characters or parts being used are:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[ ] - this indicates that it should be applied on each package or item (if the item being queried is an iterator, like a filelist.)  Including &#039;\n&#039; inside of the brackets means adding a line feed at the end of every item that is queried.&lt;br /&gt;
&lt;br /&gt;
%{...} -- this is how you specify the exact field to be queried.   To get a list of valid options, you can run: &#039;rpm --querytags&#039;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The format of %{...} also allows for select &#039;type&#039; conversions.  Some of the valid types are: octal, shescape, deptype, pgpsig, day, date, and others.&lt;br /&gt;
&lt;br /&gt;
For instance, the typical, &#039;rpm -q bash --requires&#039; is actually implemented as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q bash --qf &amp;quot;[%|VERBOSE?{%{REQUIREFLAGS:deptype}: }:{}|%{REQUIRENEVRS}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above indicate that based on the value &#039;VERBOSE&#039;, either %{REQUIREFLAGS:deptype} followed by either {} | %{REQUIRENEVRS}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| ? and other special operators exist to permit you to do some basic boolean cases.  See: /usr/lib/rpm/rpmpopt-* for a bunch of examples.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another popular example is how to export the whole DB to XML:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -qa --qf &amp;quot;[%{*:xml}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;*&#039; says to not only query the main thing, but also iterate over the matching entries (all of them), with the :xml indicating to dump the contents in XML format.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37022</id>
		<title>TipsAndTricks/UsingRPM</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37022"/>
		<updated>2018-03-15T17:48:49Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The RPM command allows for a number of query operations.  The format of the query operations can be used for a number things, such as debugging a package or even exporting information into another format, such as XML.&lt;br /&gt;
&lt;br /&gt;
First in order to perform a query, you want to tell the system to go into query mode:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You then need to add the option to tell it WHAT to query:&lt;br /&gt;
&lt;br /&gt;
To query a single package that has been installed into the database, just add the package name, such as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q bash&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query all of the installed packages in the system, add the &#039;-a&#039; option, such as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -a&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query a single package that is not yet installed, add &#039;-p &amp;lt;package name&amp;gt;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query multiple packages, just list the packages after the -p:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm libc6-7-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can include lists of packages instead:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;echo &amp;quot;bash-3.0-r3.i386.rpm&amp;quot; &amp;gt; mymanifest.txt&#039;&#039;&lt;br /&gt;
 &#039;&#039;echo &amp;quot;libc6-7-r3.i386.rpm&amp;quot; &amp;gt;&amp;gt; mymanifest.txt&#039;&#039;&lt;br /&gt;
 &#039;&#039;rpm -q -p mymanifest.txt&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Note: there is a minimum size of the file for RPM to determine this is a manifest file.  So it&#039;s recommended if this is used in script to always include a header that says something like &amp;quot;# This is a manifest file&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above operations simply control the &#039;what&#039;, by default the system will just print the package name.  (Some versions will print the name and package architecture.)&lt;br /&gt;
&lt;br /&gt;
In order to select the exact items you want to query, you want to use the &#039;--queryformat&#039; (or &#039;--qf&#039;) to specify a format.  Such as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -p mymanifest.txt --qf &amp;quot;[%{NAME}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above duplicates the default.  The special characters or parts being used are:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[ ] - this indicates that it should be applied on each package or item (if the item being queried is an iterator, like a filelist.)  Including &#039;\n&#039; inside of the brackets means adding a line feed at the end of every item that is queried.&lt;br /&gt;
&lt;br /&gt;
%{...} -- this is how you specify the exact field to be queried.   To get a list of valid options, you can run: &#039;rpm --querytags&#039;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The format of %{...} also allows for select &#039;type&#039; conversions.  Some of the valid types are: octal, shescape, deptype, pgpsig, day, date, and others.&lt;br /&gt;
&lt;br /&gt;
For instance, the typical, &#039;rpm -q bash --requires&#039; is actually implemented as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q bash --qf &amp;quot;[%|VERBOSE?{%{REQUIREFLAGS:deptype}: }:{}|%{REQUIRENEVRS}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above indicate that based on the value &#039;VERBOSE&#039;, either %{REQUIREFLAGS:deptype} followed by either {} | %{REQUIRENEVRS}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| ? and other special operators exist to permit you to do some basic boolean cases.  See: /usr/lib/rpm/rpmpopt-* for a bunch of examples.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another popular example is how to export the whole DB to XML:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -qa --qf &amp;quot;[%{*:xml}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;*&#039; says to not only query the main thing, but also iterate over the matching entries (all of them), with the :xml indicating to dump the contents in XML format.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37021</id>
		<title>TipsAndTricks/UsingRPM</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37021"/>
		<updated>2018-03-15T17:48:14Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The RPM command allows for a number of query operations.  The format of the query operations can be used for a number things, such as debugging a package or even exporting information into another format, such as XML.&lt;br /&gt;
&lt;br /&gt;
First in order to perform a query, you want to tell the system to go into query mode:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You then need to add the option to tell it WHAT to query:&lt;br /&gt;
&lt;br /&gt;
To query a single package that has been installed into the database, just add the package name, such as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q bash&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query all of the installed packages in the system, add the &#039;-a&#039; option, such as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -a&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query a single package that is not yet installed, add &#039;-p &amp;lt;package name&amp;gt;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To query multiple packages, just list the packages after the -p:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -p bash-3.0-r3.i386.rpm libc6-7-r3.i386.rpm&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can include lists of packages instead:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;echo &amp;quot;bash-3.0-r3.i386.rpm&amp;quot; &amp;gt; mymanifest.txt&lt;br /&gt;
echo &amp;quot;libc6-7-r3.i386.rpm&amp;quot; &amp;gt;&amp;gt; mymanifest.txt&lt;br /&gt;
rpm -q -p mymanifest.txt&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Note: there is a minimum size of the file for RPM to determine this is a manifest file.  So it&#039;s recommended if this is used in script to always include a header that says something like &amp;quot;# This is a manifest file&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above operations simply control the &#039;what&#039;, by default the system will just print the package name.  (Some versions will print the name and package architecture.)&lt;br /&gt;
&lt;br /&gt;
In order to select the exact items you want to query, you want to use the &#039;--queryformat&#039; (or &#039;--qf&#039;) to specify a format.  Such as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q -p mymanifest.txt --qf &amp;quot;[%{NAME}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above duplicates the default.  The special characters or parts being used are:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[ ] - this indicates that it should be applied on each package or item (if the item being queried is an iterator, like a filelist.)  Including &#039;\n&#039; inside of the brackets means adding a line feed at the end of every item that is queried.&lt;br /&gt;
&lt;br /&gt;
%{...} -- this is how you specify the exact field to be queried.   To get a list of valid options, you can run: &#039;rpm --querytags&#039;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The format of %{...} also allows for select &#039;type&#039; conversions.  Some of the valid types are: octal, shescape, deptype, pgpsig, day, date, and others.&lt;br /&gt;
&lt;br /&gt;
For instance, the typical, &#039;rpm -q bash --requires&#039; is actually implemented as:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -q bash --qf &amp;quot;[%|VERBOSE?{%{REQUIREFLAGS:deptype}: }:{}|%{REQUIRENEVRS}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The above indicate that based on the value &#039;VERBOSE&#039;, either %{REQUIREFLAGS:deptype} followed by either {} | %{REQUIRENEVRS}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| ? and other special operators exist to permit you to do some basic boolean cases.  See: /usr/lib/rpm/rpmpopt-* for a bunch of examples.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another popular example is how to export the whole DB to XML:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;rpm -qa --qf &amp;quot;[%{*:xml}\n]&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The &#039;*&#039; says to not only query the main thing, but also iterate over the matching entries (all of them), with the :xml indicating to dump the contents in XML format.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37016</id>
		<title>TipsAndTricks/UsingRPM</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks/UsingRPM&amp;diff=37016"/>
		<updated>2018-03-15T17:42:20Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: RPM usage tips and tricks&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The RPM command allows for a number of query operations.  The format of the query operations can be used for a number things, such as debugging a package or even exporting information into another format, such as XML.&lt;br /&gt;
&lt;br /&gt;
First in order to perform a query, you want to tell the system to go into query mode:&lt;br /&gt;
&lt;br /&gt;
rpm -q&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You then need to add the option to tell it WHAT to query:&lt;br /&gt;
&lt;br /&gt;
To query a single package that has been installed into the database, just add the package name, such as:&lt;br /&gt;
&lt;br /&gt;
rpm -q bash&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To query all of the installed packages in the system, add the &#039;-a&#039; option, such as:&lt;br /&gt;
&lt;br /&gt;
rpm -q -a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To query a single package that is not yet installed, add &#039;-p &amp;lt;package name&amp;gt;&#039;&lt;br /&gt;
&lt;br /&gt;
rpm -q -p bash-3.0-r3.i386.rpm&lt;br /&gt;
&lt;br /&gt;
To query multiple packages, just list the packages after the -p:&lt;br /&gt;
&lt;br /&gt;
rpm -q -p bash-3.0-r3.i386.rpm libc6-7-r3.i386.rpm&lt;br /&gt;
&lt;br /&gt;
You can include lists of packages instead:&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;bash-3.0-r3.i386.rpm&amp;quot; &amp;gt; mymanifest.txt&lt;br /&gt;
echo &amp;quot;libc6-7-r3.i386.rpm&amp;quot; &amp;gt;&amp;gt; mymanifest.txt&lt;br /&gt;
&lt;br /&gt;
rpm -q -p mymanifest.txt&lt;br /&gt;
&lt;br /&gt;
(Note: there is a minimum size of the file for RPM to determine this is a manifest file.  So it&#039;s recommended if this is used in script to always include a header that says something like &amp;quot;# This is a manifest file&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above operations simply control the &#039;what&#039;, by default the system will just print the package name.  (Some versions will print the name and package architecture.)&lt;br /&gt;
&lt;br /&gt;
In order to select the exact items you want to query, you want to use the &#039;--queryformat&#039; (or &#039;--qf&#039;) to specify a format.  Such as:&lt;br /&gt;
&lt;br /&gt;
rpm -q -p mymanifest.txt --qf &amp;quot;[%{NAME}\n]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The above duplicates the default.  The special characters or parts being used are:&lt;br /&gt;
&lt;br /&gt;
[ ] - this indicates that it should be applied on each package or item (if the item being queried is an iterator, like a filelist.)  Including &#039;\n&#039; inside of the brackets means adding a line feed at the end of every item that is queried.&lt;br /&gt;
&lt;br /&gt;
%{...} -- this is how you specify the exact field to be queried.   To get a list of valid options, you can run: &#039;rpm --querytags&#039;.&lt;br /&gt;
&lt;br /&gt;
The format of %{...} also allows for select &#039;type&#039; conversions.  Some of the valid types are: octal, shescape, deptype, pgpsig, day, date, and others.&lt;br /&gt;
&lt;br /&gt;
For instance, the typical, &#039;rpm -q bash --requires&#039; is actually implemented as:&lt;br /&gt;
&lt;br /&gt;
rpm -q bash --qf &amp;quot;[%|VERBOSE?{%{REQUIREFLAGS:deptype}: }:{}|%{REQUIRENEVRS}\n]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The above indicate that based on the value &#039;VERBOSE&#039;, either %{REQUIREFLAGS:deptype} followed by either {} | %{REQUIRENEVRS}.&lt;br /&gt;
&lt;br /&gt;
| ? and other special operators exist to permit you to do some basic boolean cases.  See: /usr/lib/rpm/rpmpopt-* for a bunch of examples.&lt;br /&gt;
&lt;br /&gt;
Another popular example is how to export the whole DB to XML:&lt;br /&gt;
&lt;br /&gt;
rpm -qa --qf &amp;quot;[%{*:xml}\n]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The &#039;*&#039; says to not only query the main thing, but also iterate over the matching entries (all of them), with the :xml indicating to dump the contents in XML format.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks&amp;diff=37015</id>
		<title>TipsAndTricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=TipsAndTricks&amp;diff=37015"/>
		<updated>2018-03-15T17:08:14Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Articles in development */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
This wiki page captures ideas for &amp;quot;Tips and tricks&amp;quot; articles that are aimed Yocto Project users that have a basic understanding of the core tools and want to extend their knowledge. Articles will written and published using the following process&lt;br /&gt;
* Articles must refer to the current (or earlier) release. They must not cover features in development in the master branch.&lt;br /&gt;
* Anyone can add entries to the &#039;&#039;&#039;Ideas for Articles&#039;&#039;&#039; section based on challenges they have encountered when using the Yocto Project&lt;br /&gt;
* More experienced developers can start to flesh out articles in the &#039;&#039;Ideas&#039;&#039; section move then to &#039;&#039;&#039;Articles in Development&#039;&#039;&#039; or contribute directly to this section.&lt;br /&gt;
* Approximately once a month an article ready for publishing will be chosen for publication by [mailto:jeffrey.osier-mixon@intel.com Jefro] and moved to the &#039;&#039;&#039;Finished Articles &#039;&#039;&#039; section. &lt;br /&gt;
&lt;br /&gt;
Please contact [mailto:henry.bruce@intel.com?Subject=Yocto%20Project%20Tips%20and%20Tricks Henry Bruce] with any questions.&lt;br /&gt;
&lt;br /&gt;
== Ideas for Articles ==&lt;br /&gt;
* [[TipsAndTricks/GeneratingASDK]] (Ross, Paul help please...)&lt;br /&gt;
* [[TipsAndTricks/AddingALicense]] (Ross)&lt;br /&gt;
* [[TipsAndTricks/UsingBuildstatsDiff]] (Ross)&lt;br /&gt;
* [[TipsAndTricks/DevPyShell]] (Richard Purdie)&lt;br /&gt;
* [[TipsAndTricks/CreatingABSP]]. And what not to put in it.&lt;br /&gt;
* [[TipsAndTricks/Patchwork]]&lt;br /&gt;
* [[TipsAndTricks/Patchtest]] (Leo)&lt;br /&gt;
* [[TipsAndTricks/CreateNewLayer]] (Brendan)&lt;br /&gt;
* [[TipsAndTricks/JenkinsPipelinesForContinuousIntegration]] (Tim Orling)&lt;br /&gt;
&lt;br /&gt;
== Articles in development ==&lt;br /&gt;
* [[TipsAndTricks/Building core-image-minimal on AWS]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/Running YP Image On AWS]] (Amber Elliot)&lt;br /&gt;
* [[TipsAndTricks/DockerOnImage]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/OnTargetWorkFlowLeveragingRPMPackagefeeds]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/BuildingAndRunningClearContainersonTarget]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/KernelDevelopmentWithEsdk]] (Todor Minchev, Henry Bruce)&lt;br /&gt;
* [[TipsAndTricks/DebugNativeRecipeWithGdb]] (Joshua Lock)&lt;br /&gt;
* [[TipsAndTricks/Netconsole]] (Ross Burton)&lt;br /&gt;
* [[TipsAndTricks/ParsingProfiling]] (Richard Purdie)&lt;br /&gt;
* [[TipsAndTricks/DemystifyingTheLinuxYoctoKernel]] (Tom Zanussi)&lt;br /&gt;
* [[TipsAndTricks/Patching the source for a recipe]] (Paul Eggleton)&lt;br /&gt;
* [[TipsAndTricks/Incorporating closed source components]] (Paul Eggleton)&lt;br /&gt;
* [[TipsAndTricks/DebuggingAvoidingRebuilds]] (Richard Purdie)&lt;br /&gt;
* [[TipsAndTricks/GitBisectABitbake]]  (Ross)&lt;br /&gt;
* [[TipsAndTricks/RunningEclipseAgainstBuiltImage]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/PrelinkSomePointersAndWorkarounds]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/RunningQemuOnMacOSX]] (Stephano)&lt;br /&gt;
* [[TipsAndTricks/Understanding what changed (diffsigs etc)]] (Joshua)&lt;br /&gt;
* [[TipsAndTricks/CropsCLIContainers]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/QuickAndDirtyKernelConfig]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/TestingToasterWithContainers]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/InvestigatingBuildTime]] (Leo Sandoval)&lt;br /&gt;
* [[TipsAndTricks/ResolvingLocaleIssues]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/DebuggingBitbakeInPudb]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/DebuggingBitbakeInWingIDE]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/CliBuildsInToasterBuilddir]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/BuildingZephyrImages]] (Henry)&lt;br /&gt;
* [[TipsAndTricks/Cmake,Eclipse, and SDKS]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/LinuxKernelAndSDKs]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/Running YP binaries on Ubuntu and Vice Versa]] (bavery)&lt;br /&gt;
* [[TipsAndTricks/LockSharedState]] (Stephano)&lt;br /&gt;
* [[TipsAndTricks/Building and booting for Joule or MinnowBoard]] (Cal)&lt;br /&gt;
* [[TipsAndTricks/EnablingAPackageFeed]] (Henry)&lt;br /&gt;
* [[TipsAndTricks/Creating Recipes for ROS modules]] (Henry)&lt;br /&gt;
* [[TipsAndTricks/TeamWorkflows]] (Joshua)&lt;br /&gt;
* [[TipsAndTricks/UseRamdisikToSpeedUpBuilds]] (Juro)&lt;br /&gt;
* [[TipsAndTricks/DebuggingHardQemuFailures]] (RP)&lt;br /&gt;
* [[TipsAndTricks/MiningPerformanceData]]&lt;br /&gt;
* [[TipsAndTricks/UsingRPM]] (fray)&lt;br /&gt;
&lt;br /&gt;
== Finished Articles ==&lt;br /&gt;
* [[TipsAndTricks/Packaging Prebuilt Libraries | Packaging Prebuilt Libraries]] (Ross and Henry)&lt;br /&gt;
* [[TipsAndTricks/NPM | Packaging Node.js Projects]]  (Brendan and Henry)&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Yocto_DevDay_Advanced_Class_Prague.pdf&amp;diff=32675</id>
		<title>File:Yocto DevDay Advanced Class Prague.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Yocto_DevDay_Advanced_Class_Prague.pdf&amp;diff=32675"/>
		<updated>2017-10-26T07:48:24Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: Mhatle uploaded a new version of &amp;amp;quot;File:Yocto DevDay Advanced Class Prague.pdf&amp;amp;quot;: Update fibonacci-lib and fibonacci-srv examples&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Advanced Class Prague Slides in PDF&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Yocto_DevDay_Advanced_Class_Prague.pptx&amp;diff=32674</id>
		<title>File:Yocto DevDay Advanced Class Prague.pptx</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Yocto_DevDay_Advanced_Class_Prague.pptx&amp;diff=32674"/>
		<updated>2017-10-26T07:47:09Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: Mhatle uploaded a new version of &amp;amp;quot;File:Yocto DevDay Advanced Class Prague.pptx&amp;amp;quot;: Fix minor issues in fibonacci-lib and fibonacci-srv examples&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Prague Advanced Class Slides - Initial Version&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Member_Technical_Contacts&amp;diff=21199</id>
		<title>Member Technical Contacts</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Member_Technical_Contacts&amp;diff=21199"/>
		<updated>2016-11-14T17:58:24Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page tracks the official technical contributors to the YP core from each of the Yocto Project&#039;s member organizations. Note that many organizations provide more resources than just one, particularly in terms of hardware or specific feature support, which is why the Yocto Project is a de facto standard for building Linux for embedded systems.&lt;br /&gt;
&lt;br /&gt;
Gold Members&lt;br /&gt;
&lt;br /&gt;
* Intel: Ross Burton &amp;lt;ross.burton@intel.com&amp;gt;&lt;br /&gt;
* Wind River: Robert Yang &amp;lt;liezhi.yang@windriver.com&amp;gt;; Mark Hatle &amp;lt;mark.hatle@windriver.com&amp;gt;; Bruce Ashfield &amp;lt;bruce.ashfield@windriver.com&amp;gt;&lt;br /&gt;
* Texas Instruments: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Juniper Networks: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Xilinx: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Mentor Graphics: Chris Larson &amp;lt;chris_larson@mentor.com&amp;gt;&lt;br /&gt;
* OpenEmbedded: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Long Term Support Initiative: Name &amp;lt;email&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Silver Members&lt;br /&gt;
&lt;br /&gt;
* Renesas: Mr. Takamitsu Honda &amp;lt;takamitsu.honda.pv@renesas.com&amp;gt;&lt;br /&gt;
* Linaro: Koen Kooi &amp;lt;koen.kooi@linaro.org&amp;gt;; Nicolas Dechesne &amp;lt;nicolas.dechesne@linaro.org&amp;gt;; Fathi Boudra &amp;lt;fathi.boudra@linaro.org&amp;gt;&lt;br /&gt;
* MontaVista: Armin Kuster &amp;lt;akuster@mvista.com&amp;gt;&lt;br /&gt;
* Dell: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* OS Systems: Fabio Berton &amp;lt;fabio.berton@ossystems.com.br&amp;gt;; Otavio Salvador &amp;lt;otavio@ossystems.com.br&amp;gt;&lt;br /&gt;
* Broadcom: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Enea: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* AMD: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Timesys: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* LG: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* NXP: Name &amp;lt;email&amp;gt;&lt;br /&gt;
* Huawei: Name &amp;lt;email&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Smart&amp;diff=7708</id>
		<title>Smart</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Smart&amp;diff=7708"/>
		<updated>2012-10-31T19:29:19Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://labix.org/smart/&lt;br /&gt;
&lt;br /&gt;
Mark&#039;s smart contrib branch:&lt;br /&gt;
&lt;br /&gt;
http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=mhatle/smart&lt;br /&gt;
&lt;br /&gt;
(This is on top of OE-Core - cherry pick the patches on top of something else if you prefer - you&#039;ll probably need to revert the patch mentioned in [https://bugzilla.yoctoproject.org/show_bug.cgi?id=3371 bug 3371] as well).&lt;br /&gt;
&lt;br /&gt;
To test this out querying a root filesystem on the host:&lt;br /&gt;
&lt;br /&gt;
 # Ensure you are using &amp;quot;package_rpm&amp;quot; in PACKAGE_CLASSES&lt;br /&gt;
 # Comment out the line in core-image-minimal that removes the packaging data files&lt;br /&gt;
 # &amp;lt;code&amp;gt;bitbake core-image-minimal&amp;lt;/code&amp;gt;&lt;br /&gt;
 # &amp;lt;code&amp;gt;bitbake python-smartpm-native&amp;lt;/code&amp;gt; &lt;br /&gt;
 # &amp;lt;code&amp;gt;bitbake -c devshell core-image-minimal&amp;lt;/code&amp;gt;&lt;br /&gt;
 # Within the devshell:&lt;br /&gt;
 cd ../rootfs&lt;br /&gt;
 export PATH=/path/to/native/sysroot/usr/bin/python-native:$PATH&lt;br /&gt;
 export RPM_ETCRPM=$PWD/etc/rpm&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart channel --add rpmsys type=rpm-sys name=&amp;quot;rpmsys&amp;quot;&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart config --set rpm-root=$PWD&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart config --set rpm-dbpath=/var/lib/rpm&lt;br /&gt;
&lt;br /&gt;
You should now be able to query the packages installed into the rootfs e.g.&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart query&lt;br /&gt;
&lt;br /&gt;
If you add an rpm-dir channel and run smart under pseudo you can install and uninstall packages:&lt;br /&gt;
&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart channel --add test type=rpm-dir path=/path/to/tmp/deploy/rpm/i586&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart query # verify that the new channel is recognized&lt;br /&gt;
 unset PSEUDO_DISABLED&lt;br /&gt;
 unset PSEUDO_UNLOAD&lt;br /&gt;
 export PSEUDO_LOCALSTATEDIR=$PWD/../pseudo&lt;br /&gt;
 pseudo smart --data-dir=$PWD/var/lib/smart install zip # install &#039;zip&#039; in the rootfs&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Smart&amp;diff=7707</id>
		<title>Smart</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Smart&amp;diff=7707"/>
		<updated>2012-10-31T19:28:53Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://labix.org/smart/&lt;br /&gt;
&lt;br /&gt;
Mark&#039;s smart contrib branch:&lt;br /&gt;
&lt;br /&gt;
http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=mhatle/smart&lt;br /&gt;
&lt;br /&gt;
(This is on top of OE-Core - cherry pick the patches on top of something else if you prefer - you&#039;ll probably need to revert the patch mentioned in [https://bugzilla.yoctoproject.org/show_bug.cgi?id=3371 bug 3371] as well).&lt;br /&gt;
&lt;br /&gt;
To test this out querying a root filesystem on the host:&lt;br /&gt;
&lt;br /&gt;
# Ensure you are using &amp;quot;package_rpm&amp;quot; in PACKAGE_CLASSES&lt;br /&gt;
# Comment out the line in core-image-minimal that removes the packaging data files&lt;br /&gt;
# &amp;lt;code&amp;gt;bitbake core-image-minimal&amp;lt;/code&amp;gt;&lt;br /&gt;
# &amp;lt;code&amp;gt;bitbake python-smartpm-native&amp;lt;/code&amp;gt; &lt;br /&gt;
# &amp;lt;code&amp;gt;bitbake -c devshell core-image-minimal&amp;lt;/code&amp;gt;&lt;br /&gt;
# Within the devshell:&lt;br /&gt;
 cd ../rootfs&lt;br /&gt;
 export PATH=/path/to/native/sysroot/usr/bin/python-native:$PATH&lt;br /&gt;
 export RPM_ETCRPM=$PWD/etc/rpm&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart channel --add rpmsys type=rpm-sys name=&amp;quot;rpmsys&amp;quot;&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart config --set rpm-root=$PWD&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart config --set rpm-dbpath=/var/lib/rpm&lt;br /&gt;
&lt;br /&gt;
You should now be able to query the packages installed into the rootfs e.g.&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart query&lt;br /&gt;
&lt;br /&gt;
If you add an rpm-dir channel and run smart under pseudo you can install and uninstall packages:&lt;br /&gt;
&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart channel --add test type=rpm-dir path=/path/to/tmp/deploy/rpm/i586&lt;br /&gt;
 smart --data-dir=$PWD/var/lib/smart query # verify that the new channel is recognized&lt;br /&gt;
 unset PSEUDO_DISABLED&lt;br /&gt;
 unset PSEUDO_UNLOAD&lt;br /&gt;
 export PSEUDO_LOCALSTATEDIR=$PWD/../pseudo&lt;br /&gt;
 pseudo smart --data-dir=$PWD/var/lib/smart install zip # install &#039;zip&#039; in the rootfs&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.2_Features&amp;diff=4307</id>
		<title>Yocto 1.2 Features</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.2_Features&amp;diff=4307"/>
		<updated>2011-12-16T16:14:39Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Unsorted */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Potential Yocto Project 1.2 Features ==&lt;br /&gt;
Yocto Project 1.2 - Target release = April 2012&lt;br /&gt;
&lt;br /&gt;
== Yocto Project 1.2 Themes ==&lt;br /&gt;
The topics below are the themes that some members of the team have started brainstorming for Yocto Project v1.2.  These will be improved with community input.&lt;br /&gt;
&lt;br /&gt;
=== Yocto Project 1.2 Objectives ===&lt;br /&gt;
The objectives of the Yocto 1.2 release are to increase adoption of the Yocto Project.&lt;br /&gt;
&lt;br /&gt;
=== Yocto Project 1.2 Theme List ===&lt;br /&gt;
The Yocto Project 1.2 Themes towards the Objectives listed above are:&lt;br /&gt;
&lt;br /&gt;
* Improved usability of the build system for new experienced users, new novice users and existing users.&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
== Process for Entering New Feature Requests ==&lt;br /&gt;
&lt;br /&gt;
* Open a bug in the Yocto bugzilla setting the type of bug to be an &amp;quot;enhancement&amp;quot; request. The detail about the request should be included in the bugzilla report.&lt;br /&gt;
* Create a new entry in the appropriate feature table below (Poky, SDK, Hardware)&lt;br /&gt;
** Suggestion:  start by copying an existing request as a template&lt;br /&gt;
* Give the feature a short, descriptive name&lt;br /&gt;
* Set the priority as appropriate (see the legend below)&lt;br /&gt;
* Set the Status to &amp;quot;Review&amp;quot;&lt;br /&gt;
* In the Source field, enter your name along with the origination of the request (e.g. OSV, OEM, Community) if applicable; provide as much detail here as you can&lt;br /&gt;
* In the Comments / Bugzilla field, provide any additional information for the request includind a link to a bugzilla entry&lt;br /&gt;
* Preview your Entry to make sure it looks ok and then save it&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Legend&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Priority:&#039;&#039;&#039;  1 = Must have, 2 = Nice to have but wouldn&#039;t block a release, 3 = Lower priority, desired, defined plan, 4 = Worthwhile ideas, no defined plan&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status:&#039;&#039;&#039; Accept = Engineering agreement to include in release, Review = Under Review for Inclusion in this release, Reject = Will not be included in this release&lt;br /&gt;
&lt;br /&gt;
== Sample Table ==&lt;br /&gt;
&lt;br /&gt;
This is a sample table to show how to submit features.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
||&#039;&#039;&#039;Feature Name&#039;&#039;&#039; ||&#039;&#039;&#039;Priority&#039;&#039;&#039; ||&#039;&#039;&#039;Status&#039;&#039;&#039; ||&#039;&#039;&#039;Source&#039;&#039;&#039; ||&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||Placeholder feature name || 1, 2, 3 or 4 || Review|| Name|| Comment + Link&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Usability ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Build Appliance: Pre-configured VM Build image built by Yocto||1||Review||davest/tracey/RP||Saul (PRC)||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1557&lt;br /&gt;
|-&lt;br /&gt;
| Hob improvements||1||Review||davest/tracey/RP||Joshua/Jessica||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1559&lt;br /&gt;
|-&lt;br /&gt;
| Hob v2 - Interface updates? ||1||Review||davest/tracey/RP||Ke &amp;amp; PRC Team||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1588&lt;br /&gt;
|-&lt;br /&gt;
| Improve user experience under Windows||1||Review||davest/tracey/RP||Scott R.||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1586&lt;br /&gt;
|-&lt;br /&gt;
| Error Handling Improvements||1||Review||||Scott G||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1543&lt;br /&gt;
|-&lt;br /&gt;
| Firewall / Proxy handling in git||2||Review||davest/tracey/RP||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1585&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Core/Bitbake ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|- &lt;br /&gt;
| Make BasicHash the default ||1||Review||RP||Lianhao(Jessica/RP)||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1555&lt;br /&gt;
|- &lt;br /&gt;
| Address git fetcher mirror issues||2||Review||RP||Richard||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1511&lt;br /&gt;
|-&lt;br /&gt;
| Recipe specific configuration (e.g. Gstreamer)||2||Resolved||||Richard / Resolved||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=923&lt;br /&gt;
|-&lt;br /&gt;
| Finish and enable PR server||2||Review||Lianhao||Lianhao||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1126&lt;br /&gt;
|-&lt;br /&gt;
| Host intrusion prevention/Swabber||2||Review||Joshua||Joshua||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1582&lt;br /&gt;
|-&lt;br /&gt;
| Yocto OOPS-type messages||2.5||Review||LCS||Paul to Investigate for 1.3 Feature||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1562&lt;br /&gt;
|-&lt;br /&gt;
| Recipe-specific sysroot||3||Review||from 1.0||Dongxiao||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1560&lt;br /&gt;
|-&lt;br /&gt;
| Handle old versions in WORKDIR||3||Review||from 1.0||Kai (WR)||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1561&lt;br /&gt;
|-&lt;br /&gt;
| Ability to build SRPM||3||Review||RP Notes||Jeff Polk/Mark||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1591&lt;br /&gt;
|-&lt;br /&gt;
| Binary package install class||3||Review||||Kai (WR)||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1592&lt;br /&gt;
|-&lt;br /&gt;
| Disk space monitoring||3||Review||RP and Robert||Robert (WR)||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1589&lt;br /&gt;
|-&lt;br /&gt;
| Ability to archive work dir||3||Review||LCS||Wenzong (WR)||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1590&lt;br /&gt;
|-&lt;br /&gt;
| Support for remote layers||3||Review||Community||Paul||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1598&lt;br /&gt;
|-&lt;br /&gt;
| Build Appliance: Pre-configured VM Build image (desktop Linux OS)||4||Review||LCS||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1558&lt;br /&gt;
|-&lt;br /&gt;
| Depexp functionality without X||4||Review||Joshua||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1658&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== QA Items ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Package History||1||Review||RP|||Paul||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1565&lt;br /&gt;
|-&lt;br /&gt;
| Package History Analysis Tool||1|||Review||RP|||Paul||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1566&lt;br /&gt;
|-&lt;br /&gt;
|QA Tests: Add recipe for LSB Tests and automate test||2||Review||||Yizhao||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1567 &lt;br /&gt;
|-&lt;br /&gt;
|QA Tests: Add recipe for posix Tests and automate test||2||Review||||Jiajun||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1568&lt;br /&gt;
|-&lt;br /&gt;
|Open Source Test Cases||2||Review||QA||Jiajun (Song)||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1595&lt;br /&gt;
|-&lt;br /&gt;
| Collect data at build time to increase accuracy of estimation (hob)||2||Resolved||||Paul / Closed||1.2||Is this really Package History Now?   http://bugzilla.yoctoproject.org/show_bug.cgi?id=1316&lt;br /&gt;
|-&lt;br /&gt;
|QA Tests: Add recipe for rt Tests and automate test||3||Review||||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1569&lt;br /&gt;
|-&lt;br /&gt;
|QA Test improvements - consider fedora/gentoo runtime security tools||3||Review||Joshua||Jiajun||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1584&lt;br /&gt;
|-&lt;br /&gt;
| Automate BSP Testing||4||Review||Tom||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1596&lt;br /&gt;
|-&lt;br /&gt;
| Test framework||4||Review||RP Notes||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1594&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Core Meta Data ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| build statistics reporting||2||Review||eflanagan||Beth||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1612&lt;br /&gt;
|-&lt;br /&gt;
| Sanity checks on per recipe basis||2||Review||RP Notes||Scott G||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=405&lt;br /&gt;
|-&lt;br /&gt;
| Package Documentation Audit:  All recipes build||2||||Team||Scott G||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1619&lt;br /&gt;
|-&lt;br /&gt;
| Parallel Locale Generation ||2||Done||RP||RP - Resolved||1.2||Resolved? http://bugzilla.yoctoproject.org/show_bug.cgi?id=1554&lt;br /&gt;
|-&lt;br /&gt;
| Clean up warning messages||2||Review||||Saul||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1544&lt;br /&gt;
|-&lt;br /&gt;
| Multilib: Enhance gcc recipe to support multilibs||2||Review||RP||Nitin||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1549&lt;br /&gt;
|-&lt;br /&gt;
| Multilib: Complete recipe enablement||2||Review||RP||Dongxiao||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1563&lt;br /&gt;
|-&lt;br /&gt;
| Multilib: Drop MULTILIB_IMAGE_INSTALL||2||Review||RP||Dongxiao||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1564&lt;br /&gt;
|-&lt;br /&gt;
| Multilib: Document||2||Review||RP||Scott R||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1622&lt;br /&gt;
|-&lt;br /&gt;
| MeeGo GPLv2 Sync||2||Review||RP Notes||Saul||1.2|| http://bugzilla.yoctoproject.org/show_bug.cgi?id=1618&lt;br /&gt;
|-&lt;br /&gt;
| Finish Oracle/Sun Hotspot JDK/JRE support||2||Review||Tom||Nitin/Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1620&lt;br /&gt;
|- &lt;br /&gt;
| Running post installs at rootfs gen time||2||Review||RP Notes||Dexuan||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1621&lt;br /&gt;
|-&lt;br /&gt;
| Fix Runtime POSIX Issue||2||Review||Team||Kai||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1623&lt;br /&gt;
|-&lt;br /&gt;
| License file cleanup ||2||Review||Beth||Beth||1.2||1 week http://bugzilla.yoctoproject.org/show_bug.cgi?id=1547&lt;br /&gt;
|-&lt;br /&gt;
| QEMU GL Enhancements||2||Review||Meta-data||Edwin||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1624&lt;br /&gt;
|-&lt;br /&gt;
| Init Selection as Distro Feature||2||Review||Joshua||Joshua w/Kai||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1625&lt;br /&gt;
|-&lt;br /&gt;
| Document multiple library versions co-existing||3||Review||Team||Scott R||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1548&lt;br /&gt;
|-&lt;br /&gt;
| Enhance TARGET_VENDOR field support||3||Review||RP||Ke||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1550&lt;br /&gt;
|-&lt;br /&gt;
| selinux patch integration||3||Review||Meta-data||ScottG w/WR||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1609&lt;br /&gt;
|-&lt;br /&gt;
| gtk+ sato filechooser patch||3||Review||RP Notes||Xiaofeng/Joshua||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1615&lt;br /&gt;
|-&lt;br /&gt;
| Investigate New UI||4||Review||Meta-data||Paul||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1606&lt;br /&gt;
|-&lt;br /&gt;
| Implement Factory reset||4||Review||Joshua||Joshua||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1593&lt;br /&gt;
|-&lt;br /&gt;
| Embedded java environment or even JDK support||4||Review||Team||Saul||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1613&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Other Layer Meta Data ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| x32 Enhancements||2||Review||||Nitin||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1579&lt;br /&gt;
|-&lt;br /&gt;
| BSPs or layers for a specific category of devices ||2||Review||Dirk/Dave/Andy||Shane||1.2|| http://bugzilla.yoctoproject.org/show_bug.cgi?id=1626&lt;br /&gt;
|-&lt;br /&gt;
| Security layer||4||Review||Joshua||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1597&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| autobuilder layer support||need detail||2||Review||Beth||Beth||1.2|| 2 weeks, http://bugzilla.yoctoproject.org/show_bug.cgi?id=1628&lt;br /&gt;
|-&lt;br /&gt;
| buildstats memory measurements||need detail||2||Review||Beth||Beth||1.2||1 week and half, http://bugzilla.yoctoproject.org/show_bug.cgi?id=1629&lt;br /&gt;
|-&lt;br /&gt;
| autobuilder clean sstate option||||2||Review||Beth||Beth||1.2|| http://bugzilla.yoctoproject.org/show_bug.cgi?id=1627&lt;br /&gt;
|-&lt;br /&gt;
| Eval Patch management tools||||3||Review||RP Notes||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1632&lt;br /&gt;
|-&lt;br /&gt;
| Bugzilla to Wiki||||2.5||Review||Darren||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1631&lt;br /&gt;
|-&lt;br /&gt;
| Provide a click through license mechanism||||2||Review||Tom||Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1630&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== BSPs ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Improve device management||[Need plan from Joshua]|| 2 ||Review||||Joshua/Darren||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1608&lt;br /&gt;
|-&lt;br /&gt;
| BSP update/intro||||2||Review||Bruce/Richard/team||Bruce||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1634&lt;br /&gt;
|- &lt;br /&gt;
|Drop Grub for Syslinux |||| 2 || Review || Darren || Darren || 1.2 ||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1635&lt;br /&gt;
|-&lt;br /&gt;
|Upgrade to EFI |||| 2 || Review || Darren || Darren || 1.2 ||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1636&lt;br /&gt;
|-&lt;br /&gt;
| replace qemuppc|||| 2  ||Review||||Bruce||1.2||http://bugzilla.pokylinux.org/show_bug.cgi?id=1638&lt;br /&gt;
|-&lt;br /&gt;
| streamline meta-intel kernel config options |||| 2 ||Review||Tom||Tom||1.2||http://bugzilla.pokylinux.org/show_bug.cgi?id=1661&lt;br /&gt;
|-&lt;br /&gt;
| add crownbay video acceleration |||| 2 ||Review||Tom||Tom||1.2||http://bugzilla.pokylinux.org/show_bug.cgi?id=1660&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ADT / Tools and Support == &lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Enhance the deploy part in remote debug||||3||Review||Lianhao||Jessica||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1600&lt;br /&gt;
|-&lt;br /&gt;
| Secure login||||3||Review||ADT Team||Jessica||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1601&lt;br /&gt;
|-&lt;br /&gt;
| Linux tools upstream integration||||3||Review||ADT Team||Jessica||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1602&lt;br /&gt;
|-&lt;br /&gt;
| Add recipe supporting autoconf-nativesdk and automake-nativesdk ||||2||Review||Lianhao||Kai/Lianhao||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1603&lt;br /&gt;
|-&lt;br /&gt;
|Eclipse BSP/Kernel Plugin || This one is Jessica&#039;s, Tom&#039;s tracked elsewhere || 2 || Review || Darren || Jessica || 1.2 ||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1610&lt;br /&gt;
|-&lt;br /&gt;
| enhance the bitbake commander eclipse plugin ||||2||Review||Dongxiao/Lianhao||Jessica/Lianhao||1.2|| http://bugzilla.yoctoproject.org/show_bug.cgi?id=1611&lt;br /&gt;
|-&lt;br /&gt;
| Tracing: tuna, oscilloscope recipes||Need detail||3||Review||from 1.0||||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1639&lt;br /&gt;
|-&lt;br /&gt;
| Tracing/profiling HOWTOs||||2||Review||Tom||Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1640&lt;br /&gt;
|-&lt;br /&gt;
| Profiling: Valgrind tools in Eclipse||||2||Review||Dave/JZ||Jessica||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1580&lt;br /&gt;
|-&lt;br /&gt;
| Tracing: Systemtap usability in Yocto||||2||Review||Tom||Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1551&lt;br /&gt;
|-&lt;br /&gt;
| Tracing: create separate recipe for perf||||2||Review||Tom||Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1552&lt;br /&gt;
|-&lt;br /&gt;
| Tracing: perf trace scripting support||||2||Review||from 1.0||Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1553&lt;br /&gt;
|-&lt;br /&gt;
| &#039;perf scripts&#039; integration||Can Jessica own this own after stap (1551) is done?||2||Review||Tom||Jessica/Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1617&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Various Demo Videos||||2||Review||From ADT module and scratch||ScottR||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1641&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Kernel ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| Minimal Image Config Infrastructure||||3||Review||Team||WR Distro Team??? / Darren||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1642&lt;br /&gt;
|-&lt;br /&gt;
| Kernel Tools||need detail||2||Review||Bruce/Mark||Bruce||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1643&lt;br /&gt;
|-&lt;br /&gt;
| use cases||need detail||1||Review||Bruce||Bruce||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1644&lt;br /&gt;
|-&lt;br /&gt;
| kernel bloat - development||need detail||2||Review||Darren||Darren||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1645&lt;br /&gt;
|-&lt;br /&gt;
| Fast boot time||need detail||2||Review||Team||Darren||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1646&lt;br /&gt;
|-&lt;br /&gt;
|Upstream config fragments |||| 2 || Review || Darren || || 1.2 ||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1647&lt;br /&gt;
|-&lt;br /&gt;
|Real-time process-executed timers |||| 2 || Review || Darren || || 1.2 ||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1648&lt;br /&gt;
|-&lt;br /&gt;
|Define Kernel policy |||| 2 || Review || Darren || || 1.2 ||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1649&lt;br /&gt;
|-&lt;br /&gt;
| Target module build||||3||Review||RP Notes||Darren||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1614&lt;br /&gt;
|-&lt;br /&gt;
| linux-yocto-dev lock ||||1||Review||Bruce||Bruce||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1679&lt;br /&gt;
|-&lt;br /&gt;
| linux-yocto-dev stable update||||2||Review||Bruce||Bruce||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1680&lt;br /&gt;
|-&lt;br /&gt;
| Kernel usability scripts ||||2||Review||Tom||Tom||1.2||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1678&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Unsorted ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Feature Name&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Priority&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Status&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Source&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Owner&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Due&#039;&#039;&#039;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|&#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Way to determine what is about to happen (similar to a dry-run)||1||Review||WR||||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1659&lt;br /&gt;
|-&lt;br /&gt;
|debuginfo export||2||Review||WR||||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1657&lt;br /&gt;
|-&lt;br /&gt;
|Recipe creation/import script||2||Review||WR|||Kai (WR)||M2?||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1656&lt;br /&gt;
|-&lt;br /&gt;
|Export source package||3||Review||WR||Xiaofeng(WR)||?||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1655&lt;br /&gt;
|-&lt;br /&gt;
|Layer tooling: Tool to combine layers||2||Review||WR||||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1654&lt;br /&gt;
|-&lt;br /&gt;
|Recipe patch tooling/workflow||2||Review||WR||||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1652&lt;br /&gt;
|-&lt;br /&gt;
|Incremental image generation||2||Review||WR||Robert (WR)||M2?||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1651&lt;br /&gt;
|-&lt;br /&gt;
|Need documentation on contributing patches and code||1||Review||WR||||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1650&lt;br /&gt;
|-&lt;br /&gt;
| rebuild udev cache if the kernel version changes||2||ACCE||||tong.lin@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1147&lt;br /&gt;
|-&lt;br /&gt;
| Unpackaged files WARNING||2||NEW||||song.liu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1545&lt;br /&gt;
|-&lt;br /&gt;
| Handled Releases with the PR server||2||NEW||||song.liu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1556&lt;br /&gt;
|-&lt;br /&gt;
| Buildstats memory measurements||3||NEW||||song.liu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1605&lt;br /&gt;
|-&lt;br /&gt;
| Use the per-file dependencies in deb and ipkg packages||2||NEW||||song.liu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1662&lt;br /&gt;
|-&lt;br /&gt;
| Document invalidation of the sstate on a per class basis||3||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1500&lt;br /&gt;
|-&lt;br /&gt;
| New santiy check for userspace packages||3||ACCE||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1008&lt;br /&gt;
|-&lt;br /&gt;
| bitbake -b prints meaningless error when given an invalid recipe name||1||ACCE||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1141&lt;br /&gt;
|-&lt;br /&gt;
| Remove python stack trace when do_patch fails||1||ACCE||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1143&lt;br /&gt;
|-&lt;br /&gt;
| Need to change numeric user/groupids to names in device_table-minimal.txt||2||ACCE||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1159&lt;br /&gt;
|-&lt;br /&gt;
| Make bitbake output less noisy for non-error cases||2||NEW||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1145&lt;br /&gt;
|-&lt;br /&gt;
| QEMU won\&#039;t run on a system that does not support tunctl||2||NEW||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1474&lt;br /&gt;
|-&lt;br /&gt;
| Display a summary of warnings and errors at the end of a bitbake command||1||NEW||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1540&lt;br /&gt;
|-&lt;br /&gt;
| Create better interface for metrics and status gathering||2||ACCE||||saul.wold@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=205&lt;br /&gt;
|-&lt;br /&gt;
| Improve syslog configurability||2||NEW||||saul.wold@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=717&lt;br /&gt;
|-&lt;br /&gt;
| Allow logrotate to use a different file system from the original logs||3||NEW||||saul.wold@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=718&lt;br /&gt;
|-&lt;br /&gt;
| qemu: when booting from live CD, X cannot be started||2||NEW||||saul.wold@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1487&lt;br /&gt;
|-&lt;br /&gt;
| Convert meta-toolchain to work as a poky install composed of staging/prebuild packages||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=115&lt;br /&gt;
|-&lt;br /&gt;
| Qemu booting cost more time||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=646&lt;br /&gt;
|-&lt;br /&gt;
| Enable swabber to be run for only specific recipes||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=822&lt;br /&gt;
|-&lt;br /&gt;
| RRECOMMENDS...-dbg causes dependency failure if no ${PN} package exists||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=824&lt;br /&gt;
|-&lt;br /&gt;
| Specify paths searched when failing to find a SRC_URI||2||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1179&lt;br /&gt;
|-&lt;br /&gt;
| Drop PKGSUFFIX and have nativesdk use multilib technology||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1508&lt;br /&gt;
|-&lt;br /&gt;
| Set default gcc-cross-canadian instruction generation to TARGET_ARCH||3||ACCE||||nitin.a.kamble@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=139&lt;br /&gt;
|-&lt;br /&gt;
| Zypper: Package dependency resolution does not know about hinting||3||NEED||||mark.hatle@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=821&lt;br /&gt;
|-&lt;br /&gt;
| Consider using PatchELF rather than chrpath for modifying the RPATH||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=806&lt;br /&gt;
|-&lt;br /&gt;
| Ensure Poky can be run on non-Linux Unices||4||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=823&lt;br /&gt;
|-&lt;br /&gt;
| Add build progress indicator||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1221&lt;br /&gt;
|-&lt;br /&gt;
| Should be easier to find and remove packages||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1241&lt;br /&gt;
|-&lt;br /&gt;
| Add more detailed data to the models used for hob state||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1293&lt;br /&gt;
|-&lt;br /&gt;
| Allow customize the dev packages when building a toolchain||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1303&lt;br /&gt;
|-&lt;br /&gt;
| Enable removal of packages||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1450&lt;br /&gt;
|-&lt;br /&gt;
| report on artifacts after image generation||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1572&lt;br /&gt;
|-&lt;br /&gt;
| make it clear how to run saved hob recipes from command line||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1573&lt;br /&gt;
|-&lt;br /&gt;
| add additional dialogs/config for u-boot/kernel||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1574&lt;br /&gt;
|-&lt;br /&gt;
| configure runtime services from gui||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1575&lt;br /&gt;
|-&lt;br /&gt;
| configure network settings from hob gui||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1576&lt;br /&gt;
|-&lt;br /&gt;
| configure users and default passwords from hob gui||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1577&lt;br /&gt;
|-&lt;br /&gt;
| Enable customisation of image drop down||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1581&lt;br /&gt;
|-&lt;br /&gt;
| Provide interface for user the install Yocto SDK through IDE||3||ACCE||||jessica.zhang@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=191&lt;br /&gt;
|-&lt;br /&gt;
| native packages should use siteinfo files||3||ACCE||||jeff.polk@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=270&lt;br /&gt;
|-&lt;br /&gt;
| [AutoBuilder/FEAT] Set Bug to Fixed automatically when building in AutoBuilder||3||REOP||||elizabeth.flanagan@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=874&lt;br /&gt;
|-&lt;br /&gt;
| Put a uname and ab name in stdio||2||ACCE||||elizabeth.flanagan@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1461&lt;br /&gt;
|-&lt;br /&gt;
| License file WARNING messages||2||ACCE||||elizabeth.flanagan@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1546&lt;br /&gt;
|-&lt;br /&gt;
| Autobuilder Layer support||2||ACCE||||elizabeth.flanagan@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1604&lt;br /&gt;
|-&lt;br /&gt;
| autobuilder clean sstate checkbox||3||ACCE||||elizabeth.flanagan@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1607&lt;br /&gt;
|-&lt;br /&gt;
| Close button doesn\&#039;t obey Fitt\&#039;s Law||3||ACCE||||edwin.zhai@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=35&lt;br /&gt;
|-&lt;br /&gt;
| sato-icon-theme lacks generic / unknown icon||3||ACCE||||edwin.zhai@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=37&lt;br /&gt;
|-&lt;br /&gt;
| I/O schedule isn\&#039;t no-op on flash based devices||3||NEED||||dvhart@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=66&lt;br /&gt;
|-&lt;br /&gt;
| Create a power users tips and tricks document||3||ACCE||||dvhart@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1033&lt;br /&gt;
|-&lt;br /&gt;
| Support \&#039;~\&#039; in version strings||3||Wait||||dongxiao.xu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=256&lt;br /&gt;
|-&lt;br /&gt;
| Pull alsa-state into oe-core (from oe)||2|||ACCE||||dongxiao.xu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1176&lt;br /&gt;
|-&lt;br /&gt;
| kernel: support standalone kernel builds||2||ACCE||||bruce.ashfield@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=843&lt;br /&gt;
|-&lt;br /&gt;
| mpc8315\&#039;s tune file: \&amp;quot;tune-ppc603e.inc\&amp;quot;||3||ACCE||||bruce.ashfield@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1192&lt;br /&gt;
|-&lt;br /&gt;
| [multilib] Triggering building a 64 bit kernel with a 32 bit userspace||3||ACCE||||song.liu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1525&lt;br /&gt;
|-&lt;br /&gt;
| Yocto website should include a glossary||2||NEED||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=557&lt;br /&gt;
|-&lt;br /&gt;
| Yocto project website should include a simplified walk-through||3||NEED||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=558&lt;br /&gt;
|-&lt;br /&gt;
| Bug reporting guide||2||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=237&lt;br /&gt;
|-&lt;br /&gt;
| Improve SDK sysroot extensibility and workflow||3||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=545&lt;br /&gt;
|-&lt;br /&gt;
| add documentation for swabber||3||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=635&lt;br /&gt;
|-&lt;br /&gt;
| need a doc for qemu usage||3||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=641&lt;br /&gt;
|-&lt;br /&gt;
| QEMU fails to launch using unfs with rpcbind installed - must have portmap.||2||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=655- maybe resolved?&lt;br /&gt;
|-&lt;br /&gt;
| Need centralized documentation on BitBake class usage||2||ACCE||||scott.m.rifenbark@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1467&lt;br /&gt;
|-&lt;br /&gt;
| bitbake \&amp;quot;NoProvider\&amp;quot; message doesn\&#039;t aid in resolving the problem||2||ACCE||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=542&lt;br /&gt;
|-&lt;br /&gt;
| Improve the error reporting when SkipPackage error is raised||2||ACCE||||scott.a.garman@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1127&lt;br /&gt;
|-&lt;br /&gt;
| sstate code doesn\&#039;t detect overwriting files||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=238&lt;br /&gt;
|-&lt;br /&gt;
| Add a mechanism to do pre-build sanity based on specific configurations||3||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=405&lt;br /&gt;
|-&lt;br /&gt;
| Usability: How to find specific variables and settings?||2||ACCE||||richard.purdie@linuxfoundation.org||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=407&lt;br /&gt;
|-&lt;br /&gt;
| TCF RSE plug-in not handle the situation if the remote agent does NOT support terminal service||3||Wait||||liping.ke@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=107&lt;br /&gt;
|-&lt;br /&gt;
| cdt.launch.remote issues on a non-canonical terminal||3||Wait||||liping.ke@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=188&lt;br /&gt;
|-&lt;br /&gt;
| Need a generic xorg.conf package that all the xservers can use.||3||ACCE||||ke.yu@intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1175&lt;br /&gt;
|-&lt;br /&gt;
| Show contents of images &amp;amp; tasks||2||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=991&lt;br /&gt;
|-&lt;br /&gt;
| Show more information about packages||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=992&lt;br /&gt;
|-&lt;br /&gt;
| Preference Package Format only support one selection at a time||3||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1272&lt;br /&gt;
|-&lt;br /&gt;
| Need guidance choosing \&#039;Base image\&#039;||2||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1277&lt;br /&gt;
|-&lt;br /&gt;
| Built toolchain doesn\&#039;t include development packages for image||2||NEW||||josh@linux.intel.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1302&lt;br /&gt;
|-&lt;br /&gt;
| On qemuarm, the command \&#039;poweroff/shutdown\&#039; can\&#039;t close the qemu completely and exit to host console with Laverne build 20110121||3||ACCE||||bruce.ashfield@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=684&lt;br /&gt;
|-&lt;br /&gt;
| gtk+ over directfb ||3||ACCE||||xiaofeng.yan@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1674&lt;br /&gt;
|-&lt;br /&gt;
| make an lsb image to meet LSB requirement for version 1.2 ||2||ACCE||||xiaofeng.yan@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1675&lt;br /&gt;
|-&lt;br /&gt;
| A scripts to clean obsolote sstate cache files ||3||NEW||||liezhi.yang@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1682&lt;br /&gt;
|-&lt;br /&gt;
| bitbake-runtask doesn&#039;t work in both 1.0.1 and 1.1 ||2||NEW||||liezhi.yang@windriver.com||||http://bugzilla.yoctoproject.org/show_bug.cgi?id=1229&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.1_Schedule&amp;diff=964</id>
		<title>Yocto 1.1 Schedule</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.1_Schedule&amp;diff=964"/>
		<updated>2011-03-17T02:33:15Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* M2 (May 30 to Jul 25 -- Design Complete Jun 6, Dev Complete Jul 4, Stabilize Complete Jul 18, Release Complete Jul 25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= October 2011 (release date: October 6, 2011) =&lt;br /&gt;
----&lt;br /&gt;
The detailed milestone map for the October 2011 release of Yocto is as below.&lt;br /&gt;
&lt;br /&gt;
== pre-M1 (March 14 to April 18 -- Feature List and Schedule Defined April 18) ==&lt;br /&gt;
* Features Submitted to web - by April 1st&lt;br /&gt;
* Features prioritized and added to schedule - by April 18th&lt;br /&gt;
&lt;br /&gt;
== M1 (Apr 18 to Jun 13 -- Design Complete Apr 25, Dev Complete May 23, Stabilize Complete Jun 6, Release Complete Jun 13) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| Architecture || OE Core || Restructuring, renaming, rebranding  || 1 || Review || Richard || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| 1.0 Carryover || multi-lib || multi-lib support for 32-bit &amp;amp; 64-bit and capable of being installed at the same time || 1 || Review || Richard || 1.0 Carryover ||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-Data || OE Comparison || Compare Yocto core set against integration work in OE and other distributions looking for bug fixes, (relevant) feature enhancements, and integration/policy hints. || 1 || Accept || Mark || Meta-data ||&lt;br /&gt;
|-&lt;br /&gt;
|| BSPs || Support for AVX as in kernel 2.6.30. - Already in 1.0 || Any toolchain support needed? || 1 || Review || Saul || Jay ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || User creation at post-install || || 1 || Accept || Mark || Architect ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M2 (May 30 to Jul 25 -- Design Complete Jun 6, Dev Complete Jul 4, Stabilize Complete Jul 18, Release Complete Jul 25) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| 1.0 Carryover || Image Creator || finish the Image Creator to add features pushed out from 1.0 || 1 || Accept || Joshua + Jessica || 1.0 Carryover ||&lt;br /&gt;
|-&lt;br /&gt;
|| Architecture || Layer Tooling || This includes the architectural work plus implementing the changes || 1 || Review || Richard || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-data || Upstream our patches || Placeholder for time for the team to upstream patches || 1 || Review || Saul || Meta-Data Team||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-data|| Error handling in bitbake || add additional error handling to bitbake || 1 || Review || Saul || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| ADT || Changes for Image Creator  || Eclipse changes pending Image Creator || 1 || Review || Jessica || ADT Team||&lt;br /&gt;
|-&lt;br /&gt;
|| BSP || Tutorials || Create tutorials and documentation on how to create a BSP || 1 || Review || Tom, Scott || Team||&lt;br /&gt;
|-&lt;br /&gt;
|| Kernel|| Fast Boot Time || 2 second boot time target || 1 || Accept || Darren|| Team ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || adding eglibc config control || this goes with the package config options  || 1.5 || Accept || Mark || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || Directory Ownership || || 1.5 || Accept || Mark || Architect || a bit concerned this will take longer then expected&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M3 (Jul 11 to Aug 15 -- Design Complete Jul 18, Dev Complete Jul 25, Stabilize Complete Aug 8, Release Complete Aug 15) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| X || X|| X || 1 || Review || X || X || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M4 (Aug 15 to Oct 6 -- Stabilize Complete Aug 29, Release Complete Oct 3) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| X || X|| X || 1 || Review || X || X || &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.1_Schedule&amp;diff=963</id>
		<title>Yocto 1.1 Schedule</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.1_Schedule&amp;diff=963"/>
		<updated>2011-03-17T02:31:29Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* M1 (Apr 18 to Jun 13 -- Design Complete Apr 25, Dev Complete May 23, Stabilize Complete Jun 6, Release Complete Jun 13) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= October 2011 (release date: October 6, 2011) =&lt;br /&gt;
----&lt;br /&gt;
The detailed milestone map for the October 2011 release of Yocto is as below.&lt;br /&gt;
&lt;br /&gt;
== pre-M1 (March 14 to April 18 -- Feature List and Schedule Defined April 18) ==&lt;br /&gt;
* Features Submitted to web - by April 1st&lt;br /&gt;
* Features prioritized and added to schedule - by April 18th&lt;br /&gt;
&lt;br /&gt;
== M1 (Apr 18 to Jun 13 -- Design Complete Apr 25, Dev Complete May 23, Stabilize Complete Jun 6, Release Complete Jun 13) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| Architecture || OE Core || Restructuring, renaming, rebranding  || 1 || Review || Richard || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| 1.0 Carryover || multi-lib || multi-lib support for 32-bit &amp;amp; 64-bit and capable of being installed at the same time || 1 || Review || Richard || 1.0 Carryover ||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-Data || OE Comparison || Compare Yocto core set against integration work in OE and other distributions looking for bug fixes, (relevant) feature enhancements, and integration/policy hints. || 1 || Accept || Mark || Meta-data ||&lt;br /&gt;
|-&lt;br /&gt;
|| BSPs || Support for AVX as in kernel 2.6.30. - Already in 1.0 || Any toolchain support needed? || 1 || Review || Saul || Jay ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || User creation at post-install || || 1 || Accept || Mark || Architect ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M2 (May 30 to Jul 25 -- Design Complete Jun 6, Dev Complete Jul 4, Stabilize Complete Jul 18, Release Complete Jul 25) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| 1.0 Carryover || Image Creator || finish the Image Creator to add features pushed out from 1.0 || 1 || Accept || Joshua + Jessica || 1.0 Carryover ||&lt;br /&gt;
|-&lt;br /&gt;
|| Architecture || Layer Tooling || This includes the architectural work plus implementing the changes || 1 || Review || Richard || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-data || Upstream our patches || Placeholder for time for the team to upstream patches || 1 || Review || Saul || Meta-Data Team||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-data|| Error handling in bitbake || add additional error handling to bitbake || 1 || Review || Saul || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| ADT || Changes for Image Creator  || Eclipse changes pending Image Creator || 1 || Review || Jessica || ADT Team||&lt;br /&gt;
|-&lt;br /&gt;
|| BSP || Tutorials || Create tutorials and documentation on how to create a BSP || 1 || Review || Tom, Scott || Team||&lt;br /&gt;
|-&lt;br /&gt;
|| Kernel|| Fast Boot Time || 2 second boot time target || 1 || Accept || Darren|| Team ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || adding eglibc config control || this goes with the package config options  || 1.5 || Review || Mark || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || Directory Ownership || || 1.5 || Review || Mark || Architect ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M3 (Jul 11 to Aug 15 -- Design Complete Jul 18, Dev Complete Jul 25, Stabilize Complete Aug 8, Release Complete Aug 15) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| X || X|| X || 1 || Review || X || X || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M4 (Aug 15 to Oct 6 -- Stabilize Complete Aug 29, Release Complete Oct 3) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| X || X|| X || 1 || Review || X || X || &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.1_Schedule&amp;diff=962</id>
		<title>Yocto 1.1 Schedule</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_1.1_Schedule&amp;diff=962"/>
		<updated>2011-03-17T02:30:58Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* M1 (Apr 18 to Jun 13 -- Design Complete Apr 25, Dev Complete May 23, Stabilize Complete Jun 6, Release Complete Jun 13) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= October 2011 (release date: October 6, 2011) =&lt;br /&gt;
----&lt;br /&gt;
The detailed milestone map for the October 2011 release of Yocto is as below.&lt;br /&gt;
&lt;br /&gt;
== pre-M1 (March 14 to April 18 -- Feature List and Schedule Defined April 18) ==&lt;br /&gt;
* Features Submitted to web - by April 1st&lt;br /&gt;
* Features prioritized and added to schedule - by April 18th&lt;br /&gt;
&lt;br /&gt;
== M1 (Apr 18 to Jun 13 -- Design Complete Apr 25, Dev Complete May 23, Stabilize Complete Jun 6, Release Complete Jun 13) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| Architecture || OE Core || Restructuring, renaming, rebranding  || 1 || Review || Richard || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| 1.0 Carryover || multi-lib || multi-lib support for 32-bit &amp;amp; 64-bit and capable of being installed at the same time || 1 || Review || Richard || 1.0 Carryover ||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-Data || OE Comparison || Compare Yocto core set against integration work in OE and other distributions looking for bug fixes, (relevant) feature enhancements, and integration/policy hints. || 1 || Approved || Mark || Meta-data ||&lt;br /&gt;
|-&lt;br /&gt;
|| BSPs || Support for AVX as in kernel 2.6.30. - Already in 1.0 || Any toolchain support needed? || 1 || Review || Saul || Jay ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || User creation at post-install || || 1 || Approved || Mark || Architect ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M2 (May 30 to Jul 25 -- Design Complete Jun 6, Dev Complete Jul 4, Stabilize Complete Jul 18, Release Complete Jul 25) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| 1.0 Carryover || Image Creator || finish the Image Creator to add features pushed out from 1.0 || 1 || Accept || Joshua + Jessica || 1.0 Carryover ||&lt;br /&gt;
|-&lt;br /&gt;
|| Architecture || Layer Tooling || This includes the architectural work plus implementing the changes || 1 || Review || Richard || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-data || Upstream our patches || Placeholder for time for the team to upstream patches || 1 || Review || Saul || Meta-Data Team||&lt;br /&gt;
|-&lt;br /&gt;
|| Meta-data|| Error handling in bitbake || add additional error handling to bitbake || 1 || Review || Saul || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| ADT || Changes for Image Creator  || Eclipse changes pending Image Creator || 1 || Review || Jessica || ADT Team||&lt;br /&gt;
|-&lt;br /&gt;
|| BSP || Tutorials || Create tutorials and documentation on how to create a BSP || 1 || Review || Tom, Scott || Team||&lt;br /&gt;
|-&lt;br /&gt;
|| Kernel|| Fast Boot Time || 2 second boot time target || 1 || Accept || Darren|| Team ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || adding eglibc config control || this goes with the package config options  || 1.5 || Review || Mark || Architect ||&lt;br /&gt;
|-&lt;br /&gt;
|| Misc || Directory Ownership || || 1.5 || Review || Mark || Architect ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M3 (Jul 11 to Aug 15 -- Design Complete Jul 18, Dev Complete Jul 25, Stabilize Complete Aug 8, Release Complete Aug 15) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| X || X|| X || 1 || Review || X || X || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== M4 (Aug 15 to Oct 6 -- Stabilize Complete Aug 29, Release Complete Oct 3) ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Group&#039;&#039;&#039; || &#039;&#039;&#039;Feature Name&#039;&#039;&#039; || &#039;&#039;&#039;Description&#039;&#039;&#039; || &#039;&#039;&#039;Priority&#039;&#039;&#039; || &#039;&#039;&#039;Status&#039;&#039;&#039; || &#039;&#039;&#039;Owner&#039;&#039;&#039; || &#039;&#039;&#039;Source&#039;&#039;&#039; || &#039;&#039;&#039;Comments / Bugzilla Links&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| X || X|| X || 1 || Review || X || X || &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=OpenEmbedded-Core&amp;diff=864</id>
		<title>OpenEmbedded-Core</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=OpenEmbedded-Core&amp;diff=864"/>
		<updated>2011-03-02T23:28:13Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The OpenEmbedded-Core is a base layer, of recipes, classes and associated files that is meant to be common amount many different Open Embedded derived systems.  While not all systems will use every piece of the OpenEmbedded-Core, it will provide a self contained example that can be used to prove basic functionality.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Getting Started&lt;br /&gt;
&lt;br /&gt;
1) Download the repository&lt;br /&gt;
&lt;br /&gt;
git clone git://git.openembedded.org/openembedded-core oe-core&lt;br /&gt;
cd oe-core&lt;br /&gt;
git clone git://git.openembedded.org/bitbake bitbake&lt;br /&gt;
&lt;br /&gt;
1.5) Temporary workaround (as of 2011-03-02)&lt;br /&gt;
&lt;br /&gt;
Edit the file scripts/poky-env-internal&lt;br /&gt;
&lt;br /&gt;
Add to the end:&lt;br /&gt;
&lt;br /&gt;
export BBFETCH2=True&lt;br /&gt;
&lt;br /&gt;
2) Setup the environment, and build directory&lt;br /&gt;
&lt;br /&gt;
. ./poky-init-build-env [&amp;lt;build directory&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
The optional build directory may be specified, otherwise it is assumed you want to use the directory named &amp;quot;build&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
3) First time configuration&lt;br /&gt;
&lt;br /&gt;
The first time you run poky-init-build-env, it will setup the directory for you.  You should at least review the settings within the conf/local.conf file.&lt;br /&gt;
&lt;br /&gt;
4) Build something&lt;br /&gt;
&lt;br /&gt;
bitbake &amp;lt;rule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A good simple place to start is &amp;quot;bitbake poky-image-minimal&amp;quot;.  This will run through a simple build and do basic system sanity checks.  If your system needs additional software installed, or other environment settings it will tell you what is needed.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=RPM5-Uprev&amp;diff=490</id>
		<title>RPM5-Uprev</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=RPM5-Uprev&amp;diff=490"/>
		<updated>2011-01-11T16:22:32Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: Created page with &amp;#039;The following is a summary of the RPM5 Uprev and related.  This will be expanded to include a future roadmap as possible.  The RPM5 work includes both rpm5.org and Zypper related…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is a summary of the RPM5 Uprev and related.  This will be expanded to include a future roadmap as possible.&lt;br /&gt;
&lt;br /&gt;
The RPM5 work includes both rpm5.org and Zypper related sources and dependencies.&lt;br /&gt;
&lt;br /&gt;
* RPM5&lt;br /&gt;
   * Uprev RPM5 to latest version (5.4.0)&lt;br /&gt;
   * Include package separation based on upstream SPEC file&lt;br /&gt;
   * Consider also supporting previous stable release (5.3.7)&lt;br /&gt;
&lt;br /&gt;
* Zypper&lt;br /&gt;
   * Dependent upon the RPM5 uprev&lt;br /&gt;
   * Sync up API usage with current RPM5 work&lt;br /&gt;
   * Change Zypper to support variable arch as implemented by RPM5&lt;br /&gt;
&lt;br /&gt;
* Rootfs creation&lt;br /&gt;
   * Sync to latest RPM5 as necessary&lt;br /&gt;
   * Create install repository for Zypper&lt;br /&gt;
   * Create rootfs using Zypper, if possible&lt;br /&gt;
&lt;br /&gt;
Goal in the end is to be able to have a more modern version of RPM5.  A newer and/or better integrated version of Zypper.  This newer version needs to hopefully use Poky&#039;s understanding of &amp;quot;arch&amp;quot; instead of it&#039;s own.  A simple mechanism to construct a Zypper package repository structure. And to use that structure to generate a filesystem.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Roadmap:&lt;br /&gt;
&lt;br /&gt;
Jan 6:&lt;br /&gt;
   * Uprev RPM5 to 5.4.0 (in Poky Contrib)&lt;br /&gt;
&lt;br /&gt;
Jan 7&lt;br /&gt;
   * Rootfs creation with RPM5 5.4.0&lt;br /&gt;
&lt;br /&gt;
Jan 13&lt;br /&gt;
   * Final RPM5 uprev and integration, including package seperation&lt;br /&gt;
   * Initial Zypper API integration and sync to RPM5&lt;br /&gt;
&lt;br /&gt;
Jan 17-21&lt;br /&gt;
   * RPM5 arch enhancement&lt;br /&gt;
   * Zypper repository (createrepo) support&lt;br /&gt;
&lt;br /&gt;
?&lt;br /&gt;
   * Zypper used to create rootfs (may not happen for 1.0)&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=486</id>
		<title>User:Mhatle</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=486"/>
		<updated>2011-01-11T16:12:25Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Name: Mark Hatle&lt;br /&gt;
&lt;br /&gt;
email: mark.hatle at windriver dot com&lt;br /&gt;
&lt;br /&gt;
freenode IRC: fray&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I&#039;m responsible for some of the userspace integration, especially around dependency generation, packaging, rootfs generation and related components.&lt;br /&gt;
&lt;br /&gt;
I am the maintainer for the [[Cross-Prelink]] project.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve started a page to attempt to document the [[Architecture-ABI]] that are in common use in embedded Linux designs.&lt;br /&gt;
&lt;br /&gt;
RPM uprev and roadmap information [[RPM5-Uprev]].&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=485</id>
		<title>User:Mhatle</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=485"/>
		<updated>2011-01-11T16:12:17Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Name: Mark Hatle&lt;br /&gt;
&lt;br /&gt;
email: mark.hatle at windriver dot com&lt;br /&gt;
&lt;br /&gt;
freenode IRC: fray&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I&#039;m responsible for some of the userspace integration, especially around dependency generation, packaging, rootfs generation and related components.&lt;br /&gt;
&lt;br /&gt;
I am the maintainer for the [[Cross-Prelink]] project.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve started a page to attempt to document the [[Architecture-ABI]] that are in common use in embedded Linux designs.&lt;br /&gt;
&lt;br /&gt;
RPM uprev and roadmap information [RPM5-Uprev].&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=264</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=264"/>
		<updated>2010-11-04T19:42:41Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Processor Variants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
Additional references, CPU optimization compatibility and suggested canonical architecture namings may be provided.&lt;br /&gt;
&lt;br /&gt;
== ABI Summary ==&lt;br /&gt;
&lt;br /&gt;
The following is a list of ABIs that are in common usage.  Some of the ABIs discussed in the following sections will not appear in this table if they are legacy.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Arch&#039;&#039;&#039;||&#039;&#039;&#039;ABI&#039;&#039;&#039;||&#039;&#039;&#039;Endian&#039;&#039;&#039;||&#039;&#039;&#039;Compatibility&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|ARM||EABI||Big Endian|| &lt;br /&gt;
|-&lt;br /&gt;
|ARM||EABI||Little Endian|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
=== ABI ===&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
You can detect the ABI if the result of objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.  This is otherwise known as &amp;quot;the ABI for the ARM Architecture&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
You can detect the ABI if the result of objdump -x contains [Version4 EABI]&lt;br /&gt;
&lt;br /&gt;
=== Processor Variants ===&lt;br /&gt;
&lt;br /&gt;
The gnu-canonical architecture for arm is in the format:&lt;br /&gt;
&lt;br /&gt;
   armv&amp;lt;version&amp;gt;&amp;lt;capabilities&amp;gt;-os-linux-gnu-eabi&lt;br /&gt;
&lt;br /&gt;
The gnu-eabi indicates that it is the newer EABI ABI.&lt;br /&gt;
&lt;br /&gt;
The ARM core versions include:&lt;br /&gt;
&lt;br /&gt;
* armv4&lt;br /&gt;
* armv5&lt;br /&gt;
* armv6&lt;br /&gt;
* armv7&lt;br /&gt;
&lt;br /&gt;
The ARM processor capabilities indicate:&lt;br /&gt;
&lt;br /&gt;
* el - little endian (optional)&lt;br /&gt;
* eb - big endian&lt;br /&gt;
* t - thumb/thumb2&lt;br /&gt;
* j - java&lt;br /&gt;
&lt;br /&gt;
This would result in something similar to:  armv7teb, for an ARM 7 core, with thumb capabilities, running in big endian mode.&lt;br /&gt;
&lt;br /&gt;
In addition processors may include specific optimizations that change which CPUs a compiled program will run on, these include:&lt;br /&gt;
&lt;br /&gt;
* VFP instructions&lt;br /&gt;
* NEON&lt;br /&gt;
* Thumb/Thumb-2 instructions&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=263</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=263"/>
		<updated>2010-11-04T19:25:25Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* ABI Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
Additional references, CPU optimization compatibility and suggested canonical architecture namings may be provided.&lt;br /&gt;
&lt;br /&gt;
== ABI Summary ==&lt;br /&gt;
&lt;br /&gt;
The following is a list of ABIs that are in common usage.  Some of the ABIs discussed in the following sections will not appear in this table if they are legacy.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Arch&#039;&#039;&#039;||&#039;&#039;&#039;ABI&#039;&#039;&#039;||&#039;&#039;&#039;Endian&#039;&#039;&#039;||&#039;&#039;&#039;Compatibility&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|ARM||EABI||Big Endian|| &lt;br /&gt;
|-&lt;br /&gt;
|ARM||EABI||Little Endian|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
=== ABI ===&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
You can detect the ABI if the result of objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.  This is otherwise known as &amp;quot;the ABI for the ARM Architecture&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
You can detect the ABI if the result of objdump -x contains [Version4 EABI]&lt;br /&gt;
&lt;br /&gt;
=== Processor Variants ===&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=262</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=262"/>
		<updated>2010-11-04T19:25:00Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* ABI */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
Additional references, CPU optimization compatibility and suggested canonical architecture namings may be provided.&lt;br /&gt;
&lt;br /&gt;
== ABI Summary ==&lt;br /&gt;
&lt;br /&gt;
The following is a list of ABIs that are in common usage.  Some of the ABIs discussed in the following sections will not appear in this table if they are legacy.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Arch&#039;&#039;&#039;||&#039;&#039;&#039;ABI&#039;&#039;&#039;||&#039;&#039;&#039;Endian&#039;&#039;&#039;||&#039;&#039;&#039;Compatibility&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|ARM||ARM EABI||Big Endian|| &lt;br /&gt;
|-&lt;br /&gt;
|ARM||ARM EABI||Little Endian|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
=== ABI ===&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
You can detect the ABI if the result of objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.  This is otherwise known as &amp;quot;the ABI for the ARM Architecture&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
You can detect the ABI if the result of objdump -x contains [Version4 EABI]&lt;br /&gt;
&lt;br /&gt;
=== Processor Variants ===&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=261</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=261"/>
		<updated>2010-11-04T19:21:57Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
Additional references, CPU optimization compatibility and suggested canonical architecture namings may be provided.&lt;br /&gt;
&lt;br /&gt;
== ABI Summary ==&lt;br /&gt;
&lt;br /&gt;
The following is a list of ABIs that are in common usage.  Some of the ABIs discussed in the following sections will not appear in this table if they are legacy.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Arch&#039;&#039;&#039;||&#039;&#039;&#039;ABI&#039;&#039;&#039;||&#039;&#039;&#039;Endian&#039;&#039;&#039;||&#039;&#039;&#039;Compatibility&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|ARM||ARM EABI||Big Endian|| &lt;br /&gt;
|-&lt;br /&gt;
|ARM||ARM EABI||Little Endian|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
=== ABI ===&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
It can be detected by:&lt;br /&gt;
&lt;br /&gt;
From: http://wiki.debian.org/ArmEabiPort&lt;br /&gt;
&lt;br /&gt;
objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
=== Processor Variants ===&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=260</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=260"/>
		<updated>2010-11-04T19:20:19Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* ARM */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
Additional references, CPU optimization compatibility and suggested canonical architecture namings may be provided.&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
=== ABI ===&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
It can be detected by:&lt;br /&gt;
&lt;br /&gt;
From: http://wiki.debian.org/ArmEabiPort&lt;br /&gt;
&lt;br /&gt;
objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
=== Processor Variants ===&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=259</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=259"/>
		<updated>2010-11-04T19:17:53Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Architecture ABI */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
Additional references, CPU optimization compatibility and suggested canonical architecture namings may be provided.&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
It can be detected by:&lt;br /&gt;
&lt;br /&gt;
From: http://wiki.debian.org/ArmEabiPort&lt;br /&gt;
&lt;br /&gt;
objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
ARM Processors are available in both Big Endian and Little Endian varieties.  Each variety impacts the ABI and specifies the endian bit and byte order.&lt;br /&gt;
&lt;br /&gt;
The following table lists the current ARM ABIs in common usage:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;ABI&#039;&#039;&#039;||&#039;&#039;&#039;Endian&#039;&#039;&#039;||&#039;&#039;&#039;Compatibility&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|EABI||Big Endian|| &lt;br /&gt;
|-&lt;br /&gt;
|EABI||Little Endian|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=258</id>
		<title>Architecture-ABI</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Architecture-ABI&amp;diff=258"/>
		<updated>2010-11-04T19:13:53Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: Created page with &amp;#039;== Architecture ABI ==  There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attem…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Architecture ABI ==&lt;br /&gt;
&lt;br /&gt;
There are currently many official and unofficial ABI -- Application Binary Interfaces -- in use within embedded Linux projects.  The following is an attempt to lightly document what the individual architecture ABI consist of, without going into too many details..&lt;br /&gt;
&lt;br /&gt;
Many of the following ABIs have grown organically based on specific processor designs and optimization levels.  For the most part the processor optimizations are ignored in these descriptions, unless otherwise mentioned.&lt;br /&gt;
&lt;br /&gt;
== ARM ==&lt;br /&gt;
&lt;br /&gt;
apcs-gnu a.k.a. OABI - The original ARM ABI.&lt;br /&gt;
&lt;br /&gt;
It has two variants, an emulated hardware floating point, and a soft floating point variant.  The legacy ABI should no longer be used in embedded projects and has more or less disappeared.  The legacy ABI is not compatible with the EABI.&lt;br /&gt;
&lt;br /&gt;
It can be detected by:&lt;br /&gt;
&lt;br /&gt;
From: http://wiki.debian.org/ArmEabiPort&lt;br /&gt;
&lt;br /&gt;
objdump -x contains [APCS-32]&lt;br /&gt;
&lt;br /&gt;
The legacy abi can be enabled by using &amp;quot;-mabi=apcs-gnu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
EABI - The new &amp;quot;Embedded&amp;quot; ABI by ARM ltd.&lt;br /&gt;
&lt;br /&gt;
The new EABI specifies a single ABI that works in various hardware floating point and software floating point configurations as well as Thumb interworking.  Overall structure packing is better, a more efficient syscall convention is provided.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
ARM Processors are available in both Big Endian and Little Endian varieties.  Each variety impacts the ABI and specifies the endian bit and byte order.&lt;br /&gt;
&lt;br /&gt;
The following table lists the current ARM ABIs in common usage:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;ABI&#039;&#039;&#039;||&#039;&#039;&#039;Endian&#039;&#039;&#039;||&#039;&#039;&#039;Compatibility&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|EABI||Big Endian|| &lt;br /&gt;
|-&lt;br /&gt;
|EABI||Little Endian|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== IA32 ==&lt;br /&gt;
&lt;br /&gt;
== MIPS ==&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=257</id>
		<title>User:Mhatle</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=257"/>
		<updated>2010-11-04T18:51:44Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Name: Mark Hatle&lt;br /&gt;
&lt;br /&gt;
email: mark.hatle at windriver dot com&lt;br /&gt;
&lt;br /&gt;
freenode IRC: fray&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I&#039;m responsible for some of the userspace integration, especially around dependency generation, packaging, rootfs generation and related components.&lt;br /&gt;
&lt;br /&gt;
I am the maintainer for the [[Cross-Prelink]] project.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve started a page to attempt to document the [[Architecture-ABI]] that are in common use in embedded Linux designs.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=255</id>
		<title>Cross-Prelink</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=255"/>
		<updated>2010-10-30T11:32:58Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Yocto Project Prelink */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Project Background ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project was founded by Jakub Jelinek at Red Hat.  The upstream project is primarily focused on self-hosted configurations and does not support prelinking a target filesystem in a cross-development environment.&lt;br /&gt;
&lt;br /&gt;
This limitation is due to the prelink software requiring the runtime linker to be available in order to resolve linking dependencies.&lt;br /&gt;
&lt;br /&gt;
The cross prelink patches began at MontaVista around 2003 in order to work around this limitation.  The original patches added the ability to emulate a runtime linker, as well as enabled a sysroot option.  Over time, this work was continued by MontaVista, Wind River and Code Sourcery.  Unfortunately, while all of the patches had been made public in one fashion or another, there was no central location that gathered and offered to manage these changes.  Starting with the Yocto Project we have decided to put together these patches and make them available as a single unit, with a clear upstream that will happily accept patches.&lt;br /&gt;
&lt;br /&gt;
== Upstream Prelink ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project is located at sourceware.org.&lt;br /&gt;
&lt;br /&gt;
For mailing lists, see: http://sourceware.org/ml/prelink/&lt;br /&gt;
&lt;br /&gt;
For SVN access to the upstream tree, see: svn://sourceware.org/svn/prelink/&lt;br /&gt;
&lt;br /&gt;
== Yocto Project Prelink ==&lt;br /&gt;
&lt;br /&gt;
See the http://yoctoproject.org/projects/cross-prelink page on the website for more information on this project.&lt;br /&gt;
&lt;br /&gt;
Mark Hatle -- [[User:Mhatle]] is the project maintainer for the cross-prelink component of the Yocto Project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=254</id>
		<title>Cross-Prelink</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=254"/>
		<updated>2010-10-30T11:32:26Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Yocto Project Prelink */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Project Background ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project was founded by Jakub Jelinek at Red Hat.  The upstream project is primarily focused on self-hosted configurations and does not support prelinking a target filesystem in a cross-development environment.&lt;br /&gt;
&lt;br /&gt;
This limitation is due to the prelink software requiring the runtime linker to be available in order to resolve linking dependencies.&lt;br /&gt;
&lt;br /&gt;
The cross prelink patches began at MontaVista around 2003 in order to work around this limitation.  The original patches added the ability to emulate a runtime linker, as well as enabled a sysroot option.  Over time, this work was continued by MontaVista, Wind River and Code Sourcery.  Unfortunately, while all of the patches had been made public in one fashion or another, there was no central location that gathered and offered to manage these changes.  Starting with the Yocto Project we have decided to put together these patches and make them available as a single unit, with a clear upstream that will happily accept patches.&lt;br /&gt;
&lt;br /&gt;
== Upstream Prelink ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project is located at sourceware.org.&lt;br /&gt;
&lt;br /&gt;
For mailing lists, see: http://sourceware.org/ml/prelink/&lt;br /&gt;
&lt;br /&gt;
For SVN access to the upstream tree, see: svn://sourceware.org/svn/prelink/&lt;br /&gt;
&lt;br /&gt;
== Yocto Project Prelink ==&lt;br /&gt;
&lt;br /&gt;
See the http://yoctoproject.org/projects/cross-prelink page on the website for more information on this project.&lt;br /&gt;
&lt;br /&gt;
[[User:Mhatle]] is the project maintainer fro the cross-prelink component of the Yocto Project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=253</id>
		<title>Cross-Prelink</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=253"/>
		<updated>2010-10-30T11:31:45Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Yocto Project Prelink */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Project Background ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project was founded by Jakub Jelinek at Red Hat.  The upstream project is primarily focused on self-hosted configurations and does not support prelinking a target filesystem in a cross-development environment.&lt;br /&gt;
&lt;br /&gt;
This limitation is due to the prelink software requiring the runtime linker to be available in order to resolve linking dependencies.&lt;br /&gt;
&lt;br /&gt;
The cross prelink patches began at MontaVista around 2003 in order to work around this limitation.  The original patches added the ability to emulate a runtime linker, as well as enabled a sysroot option.  Over time, this work was continued by MontaVista, Wind River and Code Sourcery.  Unfortunately, while all of the patches had been made public in one fashion or another, there was no central location that gathered and offered to manage these changes.  Starting with the Yocto Project we have decided to put together these patches and make them available as a single unit, with a clear upstream that will happily accept patches.&lt;br /&gt;
&lt;br /&gt;
== Upstream Prelink ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project is located at sourceware.org.&lt;br /&gt;
&lt;br /&gt;
For mailing lists, see: http://sourceware.org/ml/prelink/&lt;br /&gt;
&lt;br /&gt;
For SVN access to the upstream tree, see: svn://sourceware.org/svn/prelink/&lt;br /&gt;
&lt;br /&gt;
== Yocto Project Prelink ==&lt;br /&gt;
&lt;br /&gt;
See the http://yoctoproject.org/projects/cross-prelink page on the website for more information on this project.&lt;br /&gt;
&lt;br /&gt;
[[Mhatle]] is the project maintainer fro the cross-prelink component of the Yocto Project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=252</id>
		<title>User:Mhatle</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=User:Mhatle&amp;diff=252"/>
		<updated>2010-10-30T11:30:31Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: Created page with &amp;#039;Name: Mark Hatle  email: mark.hatle at windriver dot com  freenode IRC: fray  ----  I&amp;#039;m responsible for some of the userspace integration, especially around dependency generation…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Name: Mark Hatle&lt;br /&gt;
&lt;br /&gt;
email: mark.hatle at windriver dot com&lt;br /&gt;
&lt;br /&gt;
freenode IRC: fray&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I&#039;m responsible for some of the userspace integration, especially around dependency generation, packaging, rootfs generation and related components.&lt;br /&gt;
&lt;br /&gt;
I am the maintainer for the [[Cross-Prelink]] project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=251</id>
		<title>Cross-Prelink</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=251"/>
		<updated>2010-10-30T11:21:55Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Project Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Project Background ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project was founded by Jakub Jelinek at Red Hat.  The upstream project is primarily focused on self-hosted configurations and does not support prelinking a target filesystem in a cross-development environment.&lt;br /&gt;
&lt;br /&gt;
This limitation is due to the prelink software requiring the runtime linker to be available in order to resolve linking dependencies.&lt;br /&gt;
&lt;br /&gt;
The cross prelink patches began at MontaVista around 2003 in order to work around this limitation.  The original patches added the ability to emulate a runtime linker, as well as enabled a sysroot option.  Over time, this work was continued by MontaVista, Wind River and Code Sourcery.  Unfortunately, while all of the patches had been made public in one fashion or another, there was no central location that gathered and offered to manage these changes.  Starting with the Yocto Project we have decided to put together these patches and make them available as a single unit, with a clear upstream that will happily accept patches.&lt;br /&gt;
&lt;br /&gt;
== Upstream Prelink ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project is located at sourceware.org.&lt;br /&gt;
&lt;br /&gt;
For mailing lists, see: http://sourceware.org/ml/prelink/&lt;br /&gt;
&lt;br /&gt;
For SVN access to the upstream tree, see: svn://sourceware.org/svn/prelink/&lt;br /&gt;
&lt;br /&gt;
== Yocto Project Prelink ==&lt;br /&gt;
&lt;br /&gt;
See the http://yoctoproject.org/projects/cross-prelink page on the website for more information on this project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=250</id>
		<title>Cross-Prelink</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=250"/>
		<updated>2010-10-30T11:13:12Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Project Background ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project was founded by Jakub Jelinek at Red Hat.  The upstream project is primarily focused on self-hosted configurations and does not support prelinking a target filesystem in a cross-development environment.&lt;br /&gt;
&lt;br /&gt;
This limitation is due to the prelink software requiring the runtime linker to be available in order to resolve linking dependencies.&lt;br /&gt;
&lt;br /&gt;
The cross prelink patches began at MontaVista around 2003 in order to work around this limitation.  The original patches added the ability to emulate a runtime linker, as well as enabled a sysroot option.  This work was continued by MontaVista, Wind River and Code Sourcery.  Unfortunately, while all of the patches had been made public in one fashion or another, there was no central location that gathered and offered to manage these changes.  Starting with the Yocto Project we have decided to put together these patches and make them available as a single unit, with a clear upstream that will happily accept patches.&lt;br /&gt;
&lt;br /&gt;
== Upstream Prelink ==&lt;br /&gt;
&lt;br /&gt;
The upstream prelink project is located at sourceware.org.&lt;br /&gt;
&lt;br /&gt;
For mailing lists, see: http://sourceware.org/ml/prelink/&lt;br /&gt;
&lt;br /&gt;
For SVN access to the upstream tree, see: svn://sourceware.org/svn/prelink/&lt;br /&gt;
&lt;br /&gt;
== Yocto Project Prelink ==&lt;br /&gt;
&lt;br /&gt;
See the http://yoctoproject.org/projects/cross-prelink page on the website for more information on this project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Link&amp;diff=249</id>
		<title>Cross-Link</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Link&amp;diff=249"/>
		<updated>2010-10-30T11:00:36Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: moved Cross-Link to Cross-Prelink:&amp;amp;#32;incorrect project tile.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Cross-Prelink]]&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=248</id>
		<title>Cross-Prelink</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Cross-Prelink&amp;diff=248"/>
		<updated>2010-10-30T11:00:36Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: moved Cross-Link to Cross-Prelink:&amp;amp;#32;incorrect project tile.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See the http://yoctoproject.org/projects/cross-prelink page on the website for more information on this project.&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Projects&amp;diff=247</id>
		<title>Projects</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Projects&amp;diff=247"/>
		<updated>2010-10-30T11:00:01Z</updated>

		<summary type="html">&lt;p&gt;Mhatle: /* Welcome to the Projects Page */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome to the Projects Page ==&lt;br /&gt;
* [[AutoBuilder]]&lt;br /&gt;
* [[Poky]]&lt;br /&gt;
* [[SDK Generator]]&lt;br /&gt;
* [[Eclipse Plug-in]]&lt;br /&gt;
* [[Anjuta Plug-in]]&lt;br /&gt;
* [[Psuedo]]&lt;br /&gt;
* [[Swabber]]&lt;br /&gt;
* [[Cross-Prelink]]&lt;br /&gt;
* [[QA]]&lt;br /&gt;
* [[Documentation]]&lt;br /&gt;
* [[Boards]]&lt;/div&gt;</summary>
		<author><name>Mhatle</name></author>
	</entry>
</feed>