<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.openembedded.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=EFfeM</id>
	<title>Openembedded.org - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.openembedded.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=EFfeM"/>
	<link rel="alternate" type="text/html" href="https://www.openembedded.org/wiki/Special:Contributions/EFfeM"/>
	<updated>2026-05-06T13:30:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.10</generator>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Devshell&amp;diff=5375</id>
		<title>Devshell</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Devshell&amp;diff=5375"/>
		<updated>2012-11-22T07:04:02Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: made it more cut&amp;amp;paste friendly; added BB_ENV_EXTRAWHITE warning&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Outdated}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Q: I want to get a shell where all the variables OE and the recipe defines (CC, CFLAGS, ARCH, ...) are set.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
When a build fails, it is often useful to interactively build the part that is failing.  Because OE sets up the build environment, it may not be obvious how to quickly reproduce such an environment.  This is where the interactive devshell can help you.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
&lt;br /&gt;
One technique that can be use is:&lt;br /&gt;
&lt;br /&gt;
* cd into tmp/work/&amp;lt;failing package dir&amp;gt;/&amp;lt;failing package build dir&amp;gt;&lt;br /&gt;
* copy ../temp/run.do_compile.. x (or do_install or whatever task is failing)&lt;br /&gt;
* edit x and replace the do_compile (at the end of the file) function call w/ bash  &lt;br /&gt;
* ./bash --norc (you now have a shell w/ the environment set up properly for doing a build)&lt;br /&gt;
* make (debug issues, etc)&lt;br /&gt;
* exit (when done to go back to shell without run.do_compile settings)&lt;br /&gt;
&lt;br /&gt;
== Setup devshell ==&lt;br /&gt;
&lt;br /&gt;
The above is mainly for illustration purposes.  A better/quicker way to set up a development shell is this.&lt;br /&gt;
&lt;br /&gt;
* Add &#039;devshell&#039; to your local.conf&#039;s INHERIT variable and enjoy the power of devshell by running it like this:&lt;br /&gt;
&lt;br /&gt;
 bitbake -c devshell &amp;lt;target&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* You now have all the environment variables set up to correctly to run configure, make, etc.&lt;br /&gt;
&lt;br /&gt;
The following variables affect the terminal handling:&lt;br /&gt;
&lt;br /&gt;
 TERMCMD = &amp;quot;${SCREEN_TERMCMD}&amp;quot;&lt;br /&gt;
 TERMCMDRUN = &amp;quot;${SCREEN_TERMCMDRUN}&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # Some common terminal programs to choose from&lt;br /&gt;
 # for GNOME&lt;br /&gt;
 TERMCMD=&#039;gnome-terminal --disable-factory -t &amp;quot;$TERMWINDOWTITLE&amp;quot;&#039;&lt;br /&gt;
 TERMCMDRUN=&#039;${GNOME_TERMCMD} -x $SHELLCMDS&#039;&lt;br /&gt;
 # for screen&lt;br /&gt;
 TERMCMD=&#039;screen -D -m -t &amp;quot;$TERMWINDOWTITLE&amp;quot;&#039;&lt;br /&gt;
 TERMCMDRUN=&#039;${SCREEN_TERMCMD} $SHELLCMDS&#039;&lt;br /&gt;
 # for xterm&lt;br /&gt;
 TERMCMD=&#039;xterm -T &amp;quot;$TERMWINDOWTITLE&amp;quot;&#039;&lt;br /&gt;
 TERMCMDRUN=&#039;${XTERM_TERMCMD} -e $SHELLCMDS&#039;&lt;br /&gt;
 # for KONSOLE&lt;br /&gt;
 TERMCMD=&#039;konsole -T &amp;quot;$TERMWINDOWTITLE&amp;quot;&#039;&lt;br /&gt;
 TERMCMDRUN=&#039;${KONSOLE_TERMCMD} -e $SHELLCMDS&#039;&lt;br /&gt;
&lt;br /&gt;
If you set these from e.g. your .bashrc do not forget to add them to BB_ENV_EXTRAWHITE&lt;br /&gt;
E.g. &lt;br /&gt;
  export BB_ENV_EXTRAWHITE=&amp;quot;TERMCMD SCREEN_TERMCMD&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to get a Screen-Devshell working ==&lt;br /&gt;
&lt;br /&gt;
Using the above variables create you a devshell. Unfortunatelly you can&#039;t see anything because a new screen session is created - not a new tab in the existing session. Just use a new (SSH) connection to your (remote) account and list your screen sessions with screen -list. The last one should be your devshell and you can connect to it with screen -r &amp;lt;id&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== X11 connection rejected because of wrong authentication ==&lt;br /&gt;
&lt;br /&gt;
Sometimes if you try to run devshell remote over SSH with X11 redirection this error occurs:&lt;br /&gt;
&lt;br /&gt;
 X11 connection rejected because of wrong authentication.&lt;br /&gt;
 ERROR: function do_devshell failed&lt;br /&gt;
&lt;br /&gt;
The problem seems to be the XAUTHORITY handling. The following part in .profile helped some users.&lt;br /&gt;
&lt;br /&gt;
 if [ -e &amp;quot;$HOME/.Xauthority&amp;quot; ] ; then&lt;br /&gt;
     export XAUTHORITY=&amp;quot;$HOME/.Xauthority&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Debug build]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Barcelona,_2012&amp;diff=5129</id>
		<title>Barcelona, 2012</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Barcelona,_2012&amp;diff=5129"/>
		<updated>2012-11-05T11:11:56Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location ==&lt;br /&gt;
&lt;br /&gt;
Hotel Fira Palace · Barcelona, Spain&lt;br /&gt;
Nov 7, 2012 at 17:00.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Financial report&lt;br /&gt;
* Board Elections, Dr. Michael Lauer, Florian Boor, and Philip Balister&#039;s terms are ending.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
&lt;br /&gt;
The sign [P] means he/she is available as proxy.&lt;br /&gt;
&lt;br /&gt;
* Marco Cavallini (mckoan) [P] (proxying for Frans Meulenbroeks)&lt;br /&gt;
* Eric Bénard (ericben) [P]&lt;br /&gt;
* Mark Hatle (fray) [P]&lt;br /&gt;
* Sean Hudson (darknighte)&lt;br /&gt;
* Stefan Schmidt (stefan_schmidt)&lt;br /&gt;
* Khem Raj (khem)[P]&lt;br /&gt;
* Anders Darander [P]&lt;br /&gt;
* Philip Balister&lt;br /&gt;
* Paul Eggleton&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
* Proxy form [[File:Proxy_instructions-oe.pdf]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Prague,_2011&amp;diff=4421</id>
		<title>Prague, 2011</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Prague,_2011&amp;diff=4421"/>
		<updated>2011-10-13T12:02:04Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Location ==&lt;br /&gt;
&lt;br /&gt;
Clarion Congress Hotel, Prague, Czech Republic.&lt;br /&gt;
October 28, 2011 at 1800.&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Discuss holding a General Assembly in the US&lt;br /&gt;
* Discuss relaxing the 2 proxy rule (e.g. change to 3)&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
* Proxy form [[File:Proxy_instructions-oe.pdf]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3953</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3953"/>
		<updated>2011-02-07T10:51:20Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Test combinations */  updated for eFfeM tests of 2011-02-03&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4 ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64 ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal ||nas-server-image native-sdk-image console-image x11-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean || Rest fixed in http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=bd7a0fa284e9d3746513b97f4e5672aa3f82a6b2&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4 ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64 ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean || http://pastebin.com/62qMxWVu&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm ||minimal-uclibc ||native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean || http://pastebin.com/0tMmXnuP&lt;br /&gt;
|-&lt;br /&gt;
|qemush4 ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64 ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard ||angstrom-2010.x ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410 ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410 ||angstrom-2010.x ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mini2440 ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard ||angstrom-2010.x ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]] [5]     ||testing_2011-01-20 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]] [5]    ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||qt4-x11-demo-image (4.7.1)           ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]] [5]     ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||qt4e-demo-image (4.7.1)              ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]] [5]   ||testing_2011-01-20 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[User:Stefan|Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[User:Stefan|Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-28 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-28 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-28  || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-28  || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-28||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-28||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-28||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-28: do_rootfs failed http://tinderbox.openembedded.net/packages/1903422/&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2011-02-03 QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-02-03 ||clean || &lt;br /&gt;
|-0&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-02-03 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-02-03 ||clean || builds but has QA issues with cups, libsdl-x11, python-sqlite3, binutils&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-02-03 ||clean || builds but has QA issues with cups, libsdl-x11, python-sqlite3, binutils&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-02-03 ||clean || builds but has QA issues with cups, libsdl-x11, python-sqlite3, binutils&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis|morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch|noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch|noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
[4] Testing done by [[User:trini|Tom Rini]]. Resources kindly provided by [http://mentor.com/linux Mentor Graphics]&amp;lt;br /&amp;gt;&lt;br /&gt;
[5] Testing done by [[User:cbrake|Cliff Brake]]. Resources kindly provided by [http://bec-systems.com BEC Systems]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT on Thursday of every week, the master branch is merged to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.  This is automatically done by a [http://cgit.openembedded.org/cgit.cgi/openembedded/tree/contrib/testing/update-testing-branch.sh script] running in a cron job on [[User:Cbrake|Cliff&#039;s]] workstation.  The goal is to have the testing-branch in place so that all testers can starting building on Friday and build over the weekend when computers are more likely free.&lt;br /&gt;
# The above script sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
For a list of available test tags and results, see: http://cgit.openembedded.org/cgit.cgi/openembedded/refs/tags&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Fosdem_2011&amp;diff=3940</id>
		<title>Fosdem 2011</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Fosdem_2011&amp;diff=3940"/>
		<updated>2011-02-02T21:13:18Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* General attendance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= OpenEmbedded booth =&lt;br /&gt;
== Manning ==&lt;br /&gt;
You are going to FOSDEM and can spend some time at the OpenEmbedded stand to explain interested individuals the virtues of OpenEmbedded? Add your name and on which day you&#039;ll be available.&lt;br /&gt;
&lt;br /&gt;
* Robert Schuster (Saturday)&lt;br /&gt;
* Ulf Samuelsson (Saturday and Sunday occasionally)&lt;br /&gt;
* Philip Balister (As needed)&lt;br /&gt;
* Florian Boor (Saturday)&lt;br /&gt;
&lt;br /&gt;
== Devices ==&lt;br /&gt;
Add your name and what devices you&#039;ll bring for the stand.&lt;br /&gt;
&lt;br /&gt;
Ulf Samuelsson - AT91SAM9M10EKES booting Openembedded/Android from SD-Card&lt;br /&gt;
                 (No flash on board enabled)&lt;br /&gt;
&lt;br /&gt;
Robert Schuster - Pandaboard - Hopefully booting Angstrom with some desktop and Java foo. Try to get hold of a small TFT display&lt;br /&gt;
&lt;br /&gt;
== Flyers and posters ==&lt;br /&gt;
You can bring and/or print OpenEmbedded flyers and posters? Add your name and what you&#039;ll bring.&lt;br /&gt;
&lt;br /&gt;
 * Florian: Poster from last year, flyers&lt;br /&gt;
&lt;br /&gt;
== Power extensions, adapters and other stand material ==&lt;br /&gt;
Bringing devices is cool but we need a way to bring power to them too. Additionally people might need power sockets for different systems than the european one. List your name&lt;br /&gt;
and what stuff you can bring.&lt;br /&gt;
&lt;br /&gt;
* Robert Schuster:&lt;br /&gt;
**3-socket power extension (EU)&lt;br /&gt;
**tape&lt;br /&gt;
&lt;br /&gt;
= General attendance =&lt;br /&gt;
&lt;br /&gt;
Attending FOSDEM 2011?  Add your name to this page so that other developers can look out for you!&lt;br /&gt;
&lt;br /&gt;
* Esben Haabendal&lt;br /&gt;
* Frans Meulenbroeks (eFfeM) (sunday only)&lt;br /&gt;
* Philip Balister (Crofton)&lt;br /&gt;
* Robert Schuster (rschus/thebohemian)&lt;br /&gt;
* Ulf Samuelsson&lt;br /&gt;
* Graeme Gregory (XorA)&lt;br /&gt;
* Florian Boor (florian)&lt;br /&gt;
* Denis Carikli (GNUtoo)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
&lt;br /&gt;
Although FOSDEM itself takes place at the ULB campus, most folks prefer to stay nearer the city centre.&lt;br /&gt;
&lt;br /&gt;
The Astrid has traditionally been the default choice for OE developers, though there are many other hotels in the area.  If you are staying in a hotel other than the Astrid, feel free to add it to this section for the benefit of others.&lt;br /&gt;
&lt;br /&gt;
Scandic Grand Place.&lt;br /&gt;
  Rue d&#039;Arenberg 18&lt;br /&gt;
  Close to beer event (300 m) and Central Station.&lt;br /&gt;
  Tram to Fosdem around the corner.&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3932</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3932"/>
		<updated>2011-01-31T09:46:18Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Test combinations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4 ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64 ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel ||minimal minimal-uclibc ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-28 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal ||nas-server-image native-sdk-image console-image x11-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal ||minimal-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean || Rest fixed in http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=bd7a0fa284e9d3746513b97f4e5672aa3f82a6b2&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4 ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64 ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel ||minimal ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean || http://pastebin.com/62qMxWVu&lt;br /&gt;
|-&lt;br /&gt;
|qemux86 ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm ||minimal-uclibc ||native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean || http://pastebin.com/0tMmXnuP&lt;br /&gt;
|-&lt;br /&gt;
|qemush4 ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64 ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel ||minimal-uclibc ||nas-server-image native-sdk-image console-image minimal-image x11-image meta-toolchain ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard ||angstrom-2010.x ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410 ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410 ||angstrom-2010.x ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|mini2440 ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard ||angstrom-2008.1 ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard ||angstrom-2010.x ||console-image ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]]      ||testing_2011-01-20 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]]      ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||qt4-x11-demo-image                   ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]]      ||testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||qt4e-demo-image                      ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]]      ||testing_2011-01-20 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[User:Stefan|Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[User:Stefan|Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23|jic23]] ||testing_2011-01-20  || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-20  || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-20  || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23|jic23]] || testing_2011-01-20  || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-13||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-13||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-13: [http://tinderbox.openembedded.net/packages/1709663/ do_configure python_2.6.5 failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-06: [http://tinderbox.openembedded.org/packages/1593271/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2011-01-28 QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-28 ||clean || &lt;br /&gt;
|-0&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-28 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-28 ||clean || builds but has QA issues with cups, libsdl-x11, python-sqlite3, bunutils&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-28 ||clean || builds but has QA issues with cups, libsdl-x11, python-sqlite3, bunutils&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-28 ||clean || builds but has QA issues with cups, libsdl-x11, python-sqlite3, bunutils&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis|morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch|noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch|noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
[4] Testing done by [[User:trini|Tom Rini]]. Resources kindly provided by [http://mentor.com/linux Mentor Graphics]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
For a list of available test tags and results, see: http://cgit.openembedded.org/cgit.cgi/openembedded/refs/tags&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3922</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3922"/>
		<updated>2011-01-24T07:25:44Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Test combinations */  added 2011-01-20 results eFfeM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard      ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard      ||angstrom-2010.x   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410       ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410       ||angstrom-2010.x   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini2440       ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal-uclibc    ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini|trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/, testing-2010-12-30 failed with http://tinderbox.openembedded.org/public/logs/task/15929463.txt&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake|cbrake]]      ||testing_2010-12-30 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[User:Stefan|Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[User:Stefan|Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || master ||[[User:khem|khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||[[User:grg|grg]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas|gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23|jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23|jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23|jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23|jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-13||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-13||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-13: [http://tinderbox.openembedded.net/packages/1709663/ do_configure python_2.6.5 failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-06: [http://tinderbox.openembedded.org/packages/1593271/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2011-01-20 QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-20 ||clean || &lt;br /&gt;
|-0&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-20 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-13 ||clean || testing_2011-01-20 fails building perl: http://tinderbox.openembedded.net/packages/1882105/&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-20 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-20 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis|morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch|noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch|noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
[4] Testing done by [[User:trini|Tom Rini]]. Resources kindly provided by [http://mentor.com/linux Mentor Graphics]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
For a list of available test tags and results, see: http://cgit.openembedded.org/cgit.cgi/openembedded/refs/tags&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3904</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3904"/>
		<updated>2011-01-20T17:23:27Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: testing: added eFfeM results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||nas-server-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||native-sdk-image                      ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard      ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard      ||angstrom-2010.x   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410       ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410       ||angstrom-2010.x   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini2440       ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||console-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal-uclibc    ||minimal-image                         ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal-uclibc    ||x11-image                             ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-13        ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal-uclibc    ||meta-toolchain                        ||RHEL5 / Ubuntu 8.04 32-bit || master ||[[User:trini]] [4] ||testing_2011-01-06        ||clean            || jlime.org down, causes parse error&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/, testing-2010-12-30 failed with http://tinderbox.openembedded.org/public/logs/task/15929463.txt&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||testing_2010-12-30 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || testing-2011-01-06 || clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-13||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-13||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-13: [http://tinderbox.openembedded.net/packages/1709663/ do_configure python_2.6.5 failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-06: [http://tinderbox.openembedded.org/packages/1593271/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2011-01-13 QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-13 ||clean || &lt;br /&gt;
|-0&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-13 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-13 ||clean ||&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-13 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-13 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
[4] Testing done by [[User:trini|Tom Rini]]. Resources kindly provided by [http://mentor.com/linux Mentor Graphics]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
For a list of available test tags and results, see: http://cgit.openembedded.org/cgit.cgi/openembedded/refs/tags&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3896</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3896"/>
		<updated>2011-01-11T07:31:22Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Test combinations */  updated for eFfeM tests of 2011-01-06&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||nas-server-image                      ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||nas-server-image                      ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||nas-server-image                      ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||nas-server-image                      ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard      ||angstrom-2008.1   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|hawkboard      ||angstrom-2010.x   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410       ||angstrom-2008.1   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini6410       ||angstrom-2010.x   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mini2440       ||angstrom-2008.1   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||console-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal-uclibc    ||minimal-image                         ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86        ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc        ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips       ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64     ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel     ||minimal           ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm        ||minimal-uclibc    ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4        ||minimal-uclibc    ||meta-toolchain                        ||Ubuntu 8.04 32-bit || master         ||[[User:trini]] [4] ||testing_2011-01-06           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/, testing-2010-12-30 failed with http://tinderbox.openembedded.org/public/logs/task/15929463.txt&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||testing_2010-12-30 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[Stefan]]      ||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing-2011-1-6 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || testing-2011-1-6 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2011-01-06||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-06: [http://tinderbox.openembedded.org/packages/1591919/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2011-01-06: [http://tinderbox.openembedded.org/packages/1593271/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2011-01-06: QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-06 ||clean || &lt;br /&gt;
|-0&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2011-01-06 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2011-01-06: fails in gettext configure ( http://tinderbox.openembedded.net/builds/117274/ )&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-01-06 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2011-01-06: fails in libnl-2.0 do_compile( http://tinderbox.openembedded.net/builds/117172/ )&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
[4] Testing done by [[User:trini|Tom Rini]]. Resources kindly provided by [http://mentor.com/linux Mentor Graphics]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
For a list of available test tags and results, see: http://cgit.openembedded.org/cgit.cgi/openembedded/refs/tags&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3877</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3877"/>
		<updated>2011-01-07T07:29:27Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/, testing-2010-12-30 failed with http://tinderbox.openembedded.org/public/logs/task/15929463.txt&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||testing_2010-12-30 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[Stefan]]      ||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[Stefan]]      ||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-12-30: QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-30 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-30 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30 fails in freesmartphone/libfso-glib_git.bb configure (see http://tinderbox.openembedded.net/builds/114010/&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30: as above&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30: as abo&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||angstrom-2010.x   ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||minimal           ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106269/&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11139794.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106271/&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11142598.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106281/&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11145126.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106289/&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            ||  gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3876</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3876"/>
		<updated>2011-01-07T07:29:17Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations.&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/, testing-2010-12-30 failed with http://tinderbox.openembedded.org/public/logs/task/15929463.txt&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||testing_2010-12-30 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.2 ||[[Stefan]]      ||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[Stefan]]      ||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.10.2 ||[[User:Sledz|Sledz]] [2]||testing_2010-12-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-12-30: QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-30 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-30 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30 fails in freesmartphone/libfso-glib_git.bb configure (see http://tinderbox.openembedded.net/builds/114010/&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30: as above&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30: as abo&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||angstrom-2010.x   ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||minimal           ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106269/&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11139794.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106271/&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11142598.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106281/&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11145126.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106289/&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            ||  gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Fosdem_2011&amp;diff=3851</id>
		<title>Fosdem 2011</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Fosdem_2011&amp;diff=3851"/>
		<updated>2011-01-04T21:26:01Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Attending FOSDEM 2011?  Add your name to this page so that other developers can look out for you!&lt;br /&gt;
&lt;br /&gt;
* Frans Meulenbroeks (eFfeM)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
&lt;br /&gt;
Although FOSDEM itself takes place at the ULB campus, most folks prefer to stay nearer the city centre.&lt;br /&gt;
&lt;br /&gt;
The Astrid has traditionally been the default choice for OE developers, though there are many other hotels in the area.  If you are staying in a hotel other than the Astrid, feel free to add it to this section for the benefit of others.&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=BitBake_(user)&amp;diff=3850</id>
		<title>BitBake (user)</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=BitBake_(user)&amp;diff=3850"/>
		<updated>2011-01-04T19:04:34Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Version information */ updated for 1.10.2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BitBake&#039;&#039;&#039; is, at its simplest, a tool for executing [http://en.wikipedia.org/wiki/Task_%28computing%29 tasks] and managing [http://en.wikipedia.org/wiki/Metadata metadata]. As such, its similarities to [http://en.wikipedia.org/wiki/GNU_make GNU make] and other build tools are readily apparent. It was inspired by [http://en.wikipedia.org/wiki/Portage_%28software%29 Portage], the package management system used by the Gentoo Linux distribution. &lt;br /&gt;
&lt;br /&gt;
BitBake is the basis of the OpenEmbedded project, which is being used to build and maintain a number of embedded Linux distributions, including OpenZaurus and Familiar.&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
&lt;br /&gt;
* Homepage with manual: http://bitbake.berlios.de/ &lt;br /&gt;
* Project page at Berlios: http://developer.berlios.de/projects/bitbake/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Subversion repository: http://svn.berlios.de/svnroot/repos/bitbake/&amp;lt;/strike&amp;gt;&lt;br /&gt;
* GIT repository: http://cgit.openembedded.org/cgit.cgi/bitbake/&lt;br /&gt;
&lt;br /&gt;
= Version information =&lt;br /&gt;
&lt;br /&gt;
OpenEmbedded require BitBake 1.10.2 or newer. Some features can require GIT HEAD.  [http://oss.leggewie.org/oe/deb/ Laibsch provides a Debian package] for use in Ubuntu and Debian. &lt;br /&gt;
&lt;br /&gt;
BitBake &amp;quot;trunk&amp;quot; contain experimental code - use at your own risk.&lt;br /&gt;
&lt;br /&gt;
[[Category:User]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Getting_started_with_OE-Classic&amp;diff=3849</id>
		<title>Getting started with OE-Classic</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Getting_started_with_OE-Classic&amp;diff=3849"/>
		<updated>2011-01-04T19:03:19Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Getting a working bitbake */ updated for 1.10.2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Setting up the toolchain and doing a build =&lt;br /&gt;
&lt;br /&gt;
Before starting to configure your OE installation by following the instructions on this page make sure you have read [[OEandYourDistro|how OE fits in with your host distribution]] and the [[RequiredSoftware|required software for compilation]].&lt;br /&gt;
&lt;br /&gt;
== Directory Structure ==&lt;br /&gt;
The base directory of your Openembedded environment (&amp;lt;nowiki&amp;gt;/stuff/&amp;lt;/nowiki&amp;gt;) is the location where sources will be checked out (or unpacked).&lt;br /&gt;
&lt;br /&gt;
* You must choose a location with &#039;&#039;&#039;no symlinks above it&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* If you work in a chrooted environment and have ccache installed it is highly recommended to &#039;su - &amp;lt;username&amp;gt;&#039; after you have chrooted. Compilation may fail because ccache needs a valid &amp;lt;nowiki&amp;gt;$HOME&amp;lt;/nowiki&amp;gt;, which is usually set when using a user account. It is recommended that ccache is not installed on systems used to build OpenEmbedded as it has been known to introduce other subtle build failures.&lt;br /&gt;
&lt;br /&gt;
To create the directory structure:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ mkdir -p /stuff/build/conf&lt;br /&gt;
$ cd /stuff/&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Obtaining BitBake ==&lt;br /&gt;
To start using OE, you must first obtain the build tool it needs: &amp;lt;nowiki&amp;gt;bitbake&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is recommended to run bitbake without installing it, as a sibling directory of &amp;lt;nowiki&amp;gt;openembedded/&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;build/&amp;lt;/nowiki&amp;gt; directories. Indeed, as bitbake is written in python it does not need to be compiled. You&#039;ll just have to set the PATH variable so that the [[BitBake]] tools are accessible (see [[#Setup the environment|Setup the environment]] section).&lt;br /&gt;
&lt;br /&gt;
===Getting a working bitbake===&lt;br /&gt;
&lt;br /&gt;
Bitbake switched from a svn repository to a git one, and the former is stuck at version 1.8.13, so when you try to build you may face an error: &amp;quot;Bitbake version 1.10.2 is required and version 1.8.13 was found&amp;quot;. In that case please fetch released version or use git repository.&lt;br /&gt;
&lt;br /&gt;
Which version is safe to use? Last release one is always working. When OE changes require newer version of BitBake metadata is changed and you will get message like above.&lt;br /&gt;
&lt;br /&gt;
One note for those who want to play with development versions of BitBake - Python 2.6 may be required by newer versions. This can be a problem for some Linux distributions.&lt;br /&gt;
&lt;br /&gt;
Basically the easier and faster solution (at the moment I&#039;m writing) is to get release one.&lt;br /&gt;
&lt;br /&gt;
  wget http://download.berlios.de/bitbake/bitbake-1.10.2.tar.gz&lt;br /&gt;
&lt;br /&gt;
===Using releases===&lt;br /&gt;
&lt;br /&gt;
Visit [http://developer.berlios.de/projects/bitbake/ BitBake homepage] and download tarball with latest release. For normal usage we suggest using 1.8.x (stable branch) versions. Unpack it to &#039;&#039;&#039;/stuff/bitbake/&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Obtaining OpenEmbedded using Git ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: &#039;&#039;Once upon a time OpenEmbedded was using Monotone for version control. If you have an OE Monotone repository on your computer, you should replace it with the Git repository.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: &#039;&#039;These are only brief instructions. For a longer description about using Git with OpenEmbedded refer to [[Git]] and [[GitPhraseBook]].&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded project resides in a Git repository. You can find it at &#039;&#039;git://git.openembedded.org/openembedded&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
Web interface is: http://cgit.openembedded.org/&lt;br /&gt;
&lt;br /&gt;
To obtain Openembedded:&lt;br /&gt;
# Install git&lt;br /&gt;
# Go to the base directory of your OpenEmbedded environment&lt;br /&gt;
 $ cd /stuff/&lt;br /&gt;
# Checkout the repository&lt;br /&gt;
 $ git clone git://git.openembedded.org/openembedded&lt;br /&gt;
&lt;br /&gt;
or for the firewall challenged try&lt;br /&gt;
 $ git clone http://repo.or.cz/r/openembedded.git&lt;br /&gt;
&lt;br /&gt;
This is the data you&#039;ll be using for all the work.&lt;br /&gt;
&lt;br /&gt;
=== Updating OpenEmbedded ===&lt;br /&gt;
The .dev branch of OE is updated very frequently (as much as several times an hour). The distro branches are not updated as much but still fairly often. It seems good practice to update your OE tree at least daily. To do this, run&lt;br /&gt;
 $ git pull&lt;br /&gt;
(note: this must be done in the directory created by the checkout of openembedded. On this page, this directory is &amp;lt;tt&amp;gt;/stuff/openembedded&amp;lt;/tt&amp;gt;, but my checkout generated a directory &amp;lt;tt&amp;gt;/stuff/openembedded&amp;lt;/tt&amp;gt;. Check the name of your subdir, and use the name on your machine in the following examples)&lt;br /&gt;
&lt;br /&gt;
== Create local configuration ==&lt;br /&gt;
It&#039;s now time to create your local configuration.&lt;br /&gt;
While you could copy the default local.conf.sample like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ cd /stuff/&lt;br /&gt;
$ cp openembedded/conf/local.conf.sample build/conf/local.conf&lt;br /&gt;
$ vi build/conf/local.conf&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is actually recommended to start smaller and keep local.conf.sample in the background and add entries from there step-by-step as you understand and need them. Please, do not just edit build/conf/local.conf.sample but actually READ it (read it and then edit).&lt;br /&gt;
&lt;br /&gt;
For building a .dev branch, in your &amp;lt;nowiki&amp;gt;local.conf&amp;lt;/nowiki&amp;gt; file, you should have at least the following three entries. Example for the Angstrom distribution and the Openmoko gta01 machine:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
BBFILES = &amp;quot;/stuff/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
DISTRO = &amp;quot;angstrom-2008.1&amp;quot;&lt;br /&gt;
MACHINE = &amp;quot;om-gta01&amp;quot;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you choose to install OE in your home directory, modify local.conf to refer to the OE paths as  /home/&amp;lt;username&amp;gt;/ rather than ~/. It does not find the *.bb packages otherwise.&lt;br /&gt;
&lt;br /&gt;
== Setup the environment ==&lt;br /&gt;
One of the four command sets below will need to be run every time you open a terminal for development. (You can automate this in ~/.profile, /etc/profile, or perhaps use a script to set the necessary variables for using [[BitBake]].)&lt;br /&gt;
&lt;br /&gt;
If you followed the recommendation above to use [[BitBake]] from Git:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ export BBPATH=/stuff/build:/stuff/openembedded&lt;br /&gt;
$ export PATH=/stuff/bitbake/bin:$PATH&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you installed [[BitBake]]:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ export BBPATH=/stuff/build:/stuff/openembedded&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Alternative syntax for those using the tcsh shell (e.g FreeBSD):&lt;br /&gt;
 &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ setenv PATH &amp;quot;/stuff/bitbake/bin:&amp;quot;$PATH&lt;br /&gt;
$ setenv BBPATH &amp;quot;/stuff/build:/stuff/openembedded:&amp;quot;$BBPATH&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Start building ==&lt;br /&gt;
The primary interface to the build system is the &amp;lt;nowiki&amp;gt;bitbake&amp;lt;/nowiki&amp;gt; command (see the bitbake users manual). &amp;lt;nowiki&amp;gt;bitbake&amp;lt;/nowiki&amp;gt; will download and patch stuff from the network, so it helps if you are on a well connected machine.&lt;br /&gt;
&lt;br /&gt;
Note that you should issue all bitbake commands from inside of the &amp;lt;nowiki&amp;gt;build/&amp;lt;/nowiki&amp;gt; directory, or you should override TMPDIR to point elsewhere (by default it goes to &amp;lt;nowiki&amp;gt;tmp/&amp;lt;/nowiki&amp;gt; relative to the directory you run the tools in).&lt;br /&gt;
&lt;br /&gt;
Here are some example invocations:&lt;br /&gt;
&lt;br /&gt;
Building a single package (e.g. nano):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake nano&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Building package sets (e.g. task-base):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake task-base&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Special note for&#039;&#039; &amp;lt;nowiki&amp;gt;task-base&amp;lt;/nowiki&amp;gt;: you may need additional setup for building this very one task. More details in [[ZaurusKernels]]&lt;br /&gt;
&lt;br /&gt;
Building a group of packages and deploying them into a rootfs image:&lt;br /&gt;
&lt;br /&gt;
GPE:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake x11-gpe-image&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
X11:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake x11-image&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OPIE:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake opie-image&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(&#039;&#039;&#039;NOTE:&#039;&#039;&#039; kergoth says it will take around 10GB of disk space to build an opie or gpe image for one architecture.&amp;lt;br&amp;gt;&lt;br /&gt;
sledge says: You can reduce it to ~4GB by [[Advanced_configuration|INHERIT += &amp;quot;rm_work&amp;quot;]])&lt;br /&gt;
&lt;br /&gt;
(&#039;&#039;&#039;NOTE:&#039;&#039;&#039; if you are using your custom kernel - set &amp;quot;Use the ARM EABI to compile the kernel (AEABI)&amp;quot; option in &amp;quot;Kernel Features&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
See the /stuff/openembedded/recipes/meta/ directory if you&#039;re curious about what meta/task and image targets exist.&lt;br /&gt;
&lt;br /&gt;
Building a single package, bypassing the long parse step (and therefore its dependencies--use with care):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake -b /stuff/openembedded/recipes/blah/blah.bb&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See [[Useful targets]] for a description of some of the more useful meta-packages. You will typically need at least one of the base images (&amp;lt;nowiki&amp;gt;bootstrap-image&amp;lt;/nowiki&amp;gt;, &amp;lt;nowiki&amp;gt;opie-image&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;gpe-image&amp;lt;/nowiki&amp;gt;), and if and only if you&#039;re building for an [http://wiki.openzaurus.org/Main_Page OpenZaurus] target requiring an installer image (such as C3000), an additional &amp;lt;nowiki&amp;gt;pivotboot-image&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Output of the build process (temporary files, log files and the binaries) all ends up in the &amp;lt;nowiki&amp;gt;tmp&amp;lt;/nowiki&amp;gt; directory.  Most interesting is probably the &amp;lt;nowiki&amp;gt;tmp/work/&amp;lt;/nowiki&amp;gt; directory.  Just have a look around the [[DirectoryStructure]].            &lt;br /&gt;
&lt;br /&gt;
Images generated by building package groups like &amp;lt;nowiki&amp;gt;opie-image&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;pivotboot-image&amp;lt;/nowiki&amp;gt; are placed in the &amp;lt;nowiki&amp;gt;tmp/deploy/images/&amp;lt;/nowiki&amp;gt; directory. Individual ipkg packages are put in &amp;lt;nowiki&amp;gt;tmp/deploy/ipk&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Adding Packages ==&lt;br /&gt;
# Create [[bbfile]].&lt;br /&gt;
# Try building it locally.&lt;br /&gt;
# Fix eventual problems.&lt;br /&gt;
# Send .[[bbfile]] or an [[OePatch]] to the [http://wiki.openembedded.net/index.php/Mailing_Lists openembedded-devel mailing list]. Please note that changes should comply with the [[Commit_Policy | commit policy]].&lt;br /&gt;
&lt;br /&gt;
= Problems =&lt;br /&gt;
Try to solve problems first by checking that you have done everything right, that nothing has changed from this description and that you have the latest code (see [[GitPhraseBook]]). Look also in the log file (referenced in any error message you will receive). If you still have problems, try checking [[PossibleFailures]] and [http://www.openembedded.org/wiki/OeFaq#builderrors common build errors].  &lt;br /&gt;
Above links are dead, you can try the [[:Category:FAQ]].  If problems persist, ask on [[IRC]] or in the [[Mailing lists|openembedded mailing list]].&lt;br /&gt;
&lt;br /&gt;
The Openembedded metadata is changing constantly.  This implies several things:&lt;br /&gt;
&lt;br /&gt;
# Once you have a &amp;quot;known good&amp;quot; version that works well on your system, keep it!  To update, clone a new copy; don&#039;t overwrite that working version until it&#039;s known to be safe.&lt;br /&gt;
# To resolve build problems, &amp;quot;git pull&amp;quot; is your good friend.  Many times, the issues will already be fixed in the current tree.&lt;br /&gt;
# Not all metadata updates cause the local caches to update correctly.  Sometimes you&#039;ll need to remove the &amp;quot;.../tmp&amp;quot; work directory and rebuild from scratch.&lt;br /&gt;
# Similar issues apply to the package sources you download.&lt;br /&gt;
&lt;br /&gt;
= Portability issues =&lt;br /&gt;
Make sure to set &amp;lt;nowiki&amp;gt;TARGET_OS&amp;lt;/nowiki&amp;gt; to something other than linux in local.conf if your host isn&#039;t linux.&lt;br /&gt;
&lt;br /&gt;
GNU extensions to tools are often required.  Symlink GNU patch, make, and cp (from fileutils), chmod, sed, find, tar, awk into your OE development path.&lt;br /&gt;
&lt;br /&gt;
FreeBSD 4 users: Perl 5.0 is too old.  A more recent perl must be available as &amp;lt;nowiki&amp;gt;/usr/bin/perl&amp;lt;/nowiki&amp;gt;.  Unfortunately just having more recent perl in the path isn&#039;t good enough.  Some scripts are hard-coded for &amp;lt;nowiki&amp;gt;/usr/bin/perl&amp;lt;/nowiki&amp;gt;.  You can test for which perl you&#039;re using by typing perl -v.  see /usr/ports/UPDATING for instructions on updating perl. Don&#039;t forget to do a use.perl port as instructed in /usr/ports/UPDATING&lt;br /&gt;
&lt;br /&gt;
FreeBSD users: Set &amp;lt;nowiki&amp;gt;BUILD_OS&amp;lt;/nowiki&amp;gt; in local.conf to freebsdN where N is your major version number.  At least the cross gcc wants this.&lt;br /&gt;
&lt;br /&gt;
FreeBSD users: The build process of glibc uses a very long command line at some places.  Increase ARG_MAX to at least 131072, by editing /usr/sys/sys/syslimits.h and recompile your kernel (and reboot).&lt;br /&gt;
&lt;br /&gt;
= Productivity notes =&lt;br /&gt;
Use the interactive bitbake mode (&amp;quot;bitbake -i&amp;quot;) to speed up work when debugging or developing .bb files. Remember to run &amp;quot;parse&amp;quot; at the prompt first. Go!&lt;br /&gt;
&lt;br /&gt;
If you want to save some compile time or are interested in additional tweaks to local.conf take a look at the [[Advanced configuration]] page.&lt;br /&gt;
&lt;br /&gt;
[[Category:User]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3845</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3845"/>
		<updated>2011-01-03T10:19:45Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Test combinations */  updated for eFfeM tests of 2010-12-30&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||testing_2010-12-10 ||clean || 2010-12-24 failed with http://tinderbox.openembedded.net/public/logs/task/15229751.txt&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.1 ||[[Stefan]]      ||testing_2010-12-17||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[Stefan]]      ||testing_2010-12-17||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-12-24||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-12-30: QA issue in gtk-doc.bb&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-30 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-30 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30 fails in freesmartphone/libfso-glib_git.bb configure (see http://tinderbox.openembedded.net/builds/114010/&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30: as above&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-30: as abo&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|x86       ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||x264-r2245-r7 FAILED http://tinderbox.openembedded.net/packages/1402599/&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain      ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot              ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image       ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x11-image           ||Ubuntu 10.04 64-bit  || 1.10.1 ||tharvey  ||testing_2010-12-23||clean ||Many QA Issues&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||angstrom-2010.x   ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||minimal           ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106269/&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11139794.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106271/&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11142598.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106281/&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11145126.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106289/&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            ||  gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3819</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3819"/>
		<updated>2010-12-27T11:24:30Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Test combinations */  updated for eFfeM tests of 2010-12-24&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean || testing-2010-12-10 failed with http://tinderbox.openembedded.net/packages/1321155/&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||testing_2010-12-10 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.1 ||[[Stefan]]      ||testing_2010-12-17||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain meta-toolchain-qte||Ubuntu 10.10 32-bit   || master ||[[Stefan]]      ||testing_2010-12-17||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-12-24: udev fails, header issue&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-24 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-24 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-24 fails in libfsobasics (vala related errors)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-24: kernel packaged_staging failed: (tar: .: file changed as we read it&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || testing_2010-12-24 fails in libfsobasics (vala related errors)&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||&lt;br /&gt;
|-&lt;br /&gt;
|x86     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||Failed - x264_r2245.bb http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||angstrom-2010.x   ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||minimal           ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106269/&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11139794.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106271/&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11142598.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106281/&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11145126.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106289/&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            ||  gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Required_software&amp;diff=3750</id>
		<title>Required software</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Required_software&amp;diff=3750"/>
		<updated>2010-12-16T09:34:34Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Tools to download source files */  added mercurial, needed for hg:// fetcher&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= OpenEmbedded&#039;s Software Requirements =&lt;br /&gt;
&lt;br /&gt;
This page is the reference of what software is needed.  But [[OEandYourDistro]] is likely much faster in getting you that software actually installed.&lt;br /&gt;
&lt;br /&gt;
To use the OE build system the following software is required on your system:&lt;br /&gt;
* [http://www.python.org/ Python] (Version 2.5.0 or 2.6.x for latest development version of bitbake)&lt;br /&gt;
** Note that you may also need certain development files for Python e.g. for bitbake&#039;s setup.py to work. Depending on the distribution you use you may want to look for a package called &amp;quot;python-dev&amp;quot;, &amp;quot;python-devel&amp;quot;, or similar.&lt;br /&gt;
* [http://www.gnu.org/software/patch/patch.html GNU Patch] (Version 2.5.9 or later, see ftp://alpha.gnu.org/gnu/diffutils/ .  It is a &amp;quot;testing release&amp;quot; and is not mirrored on the GNU mirrors.)&lt;br /&gt;
* [http://www.gnu.org/software/m4/m4.html GNU m4]&lt;br /&gt;
* [http://www.gnu.org/software/make/ GNU make] (Version 3.80 or later for hh.org kernels)&lt;br /&gt;
* [http://psyco.sourceforge.net/ Psyco JIT Compiler] is recommended to increase performance (32bit only)&lt;br /&gt;
* [http://www.perl.org/ perl] (needs newer than 5.0, how much newer? probably at least 5.6.2)&lt;br /&gt;
* [http://invisible-island.net/diffstat/diffstat.html diffstat]&lt;br /&gt;
* [http://developer.berlios.de/projects/bitbake bitbake]&lt;br /&gt;
&lt;br /&gt;
== Tools to download source files ==&lt;br /&gt;
* wget &lt;br /&gt;
* curl &lt;br /&gt;
* ftp&lt;br /&gt;
* [http://www.nongnu.org/cvs/ cvs]&lt;br /&gt;
* [http://subversion.tigris.org/ subversion]&lt;br /&gt;
* [http://git.or.cz/index.html git]&lt;br /&gt;
* [http://mercurial.selenic.com/ mercurial] (for some recipes)&lt;br /&gt;
&lt;br /&gt;
== Tools to verify integrity of the downloaded sources ==&lt;br /&gt;
* md5sum&lt;br /&gt;
* sha256sum&lt;br /&gt;
&lt;br /&gt;
== Tools to unpack sources ==&lt;br /&gt;
* tar&lt;br /&gt;
* bzip2&lt;br /&gt;
* gzip&lt;br /&gt;
* unzip&lt;br /&gt;
&lt;br /&gt;
== Tools to build the various *-doc packages==&lt;br /&gt;
* [http://www.jclark.com/jade/ Jade] or [http://www.netfolder.com/DSSSL/ OpenJade]&lt;br /&gt;
** I don&#039;t know which of these is preferred&lt;br /&gt;
* [http://sourceforge.net/projects/docbook/ Docbook] DTDs and DSSSL stylesheets&lt;br /&gt;
* [http://sgmltools-lite.sourceforge.net/ sgmltools], called &amp;quot;sgmltools-lite&amp;quot; too&lt;br /&gt;
* [http://sources.redhat.com/docbook-tools/ docbook-utils]&lt;br /&gt;
** docbook-utils download is hard to find; look in ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES&lt;br /&gt;
* [ftp://ftp.gnu.org/pub/gnu/texinfo/ Texinfo]&lt;br /&gt;
* [http://www.nongnu.org/texi2html/ texi2html] (Perl script that converts Texinfo to HTML)&lt;br /&gt;
&lt;br /&gt;
== Other packages ==&lt;br /&gt;
* [http://www.gnu.org/software/sed/sed.html GNU sed] 4.x&lt;br /&gt;
* [http://www.gnu.org/software/bison/bison.html Bison]&lt;br /&gt;
* bc (binary calculator), if you want to build a Zaurus 2.4 or any of the collie kernels&lt;br /&gt;
* glibc headers (libc6-dev in Debian, glibc-devel in RPM based (in PLD also glibc-static is needed))&lt;br /&gt;
* [http://www.pcre.org/ pcre headers] (Perl 5 Compatible Regular Expression Library, required for e.g. konqueror-embedded)&lt;br /&gt;
* SDL headers to build qemu-native (apt-get install libsdl1.2-dev under Ubuntu/Debian)&lt;br /&gt;
* [http://www.mktemp.org/mktemp/ mktemp] (required by quilt and used in some package patches)&lt;br /&gt;
* help2man - Create simple man pages from --help output&lt;br /&gt;
&lt;br /&gt;
There is an ongoing effort to accurately document the required software within the OpenEmbedded and ultimately, this will be reflected in the ASSUME_PROVIDED variable.&lt;br /&gt;
&lt;br /&gt;
[[Category:User]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3749</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3749"/>
		<updated>2010-12-16T09:32:18Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: added eFfeM tests&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.10 64-bit   || master ||[[User:Cbrake]]      ||release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-11-12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain native-sdk-image meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.1 ||[[Stefan]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain native-sdk-image ||Ubuntu 10.10 32-bit   || 1.10.1 ||[[Stefan]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-12-10: udev fails, header issue&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-12-10 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||&lt;br /&gt;
|-&lt;br /&gt;
|x86     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||Failed - x264_r2245.bb http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||angstrom-2010.x   ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||minimal           ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106269/&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11139794.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106271/&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11142598.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106281/&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11145126.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106289/&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            ||  gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3721</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3721"/>
		<updated>2010-12-07T10:44:00Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]].&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || 1.10.0 ||[[User:Cbrake]]      ||testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || 1.10.0 ||[[User:Cbrake]]      ||testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-11-12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain native-sdk-image meta-toolchain-qte||Ubuntu 9.04 64-bit   || 1.10.1 ||[[Stefan]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||minimal-image console-image openjdk-6 meta-toolchain native-sdk-image ||Ubuntu 10.10 32-bit   || 1.10.1 ||[[Stefan]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips64    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal-uclibc ||native-sdk-image console-image x11-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk ||minimal-uclibc ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal-uclibc  ||console-image native-sdk-image  x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal-uclibc   ||console-image native-sdk-image x11-image ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image meta-toolchain  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal-uclibc   ||minimal-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||micro-uclibc   ||micro-image  ||Slackware 13.1 64-bit   || master ||grg      ||release-2010.12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || meta-toolchain || Gentoo || || [[User:jic23]] || release-2010.12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-11-12: fails (system thinks nios2 is an os2 system)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || x264-r2245-r7 FAILED http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/public/logs/task/10280531.txt&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image glibc  ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||console-image uclibc ||Ubuntu 10.04 64-bit   ||master ||ynezz     || testing_2010-11-12 ||clean || libiconv-1.13.1-r0 FAILED http://tinderbox.openembedded.net/packages/986368/&lt;br /&gt;
|-&lt;br /&gt;
|x86     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||&lt;br /&gt;
|-&lt;br /&gt;
|x86     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||Failed - x264_r2245.bb http://tinderbox.openembedded.net/public/logs/task/10303075.txt&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||release-2010.12||clean TMPDIR/DL_DIR||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||minimal           ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||release-2010.12 ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||angstrom-2008.1     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos-2010     ||minimal-image, &amp;lt;del&amp;gt;x11-image&amp;lt;/del&amp;gt; ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|mc355      ||kaeilos-2010     ||minimal-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|akita      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|ronetix-pm9263      ||kaeilos     ||minimal-image, x11-image ||Debian Lenny 64-bit ||1.10.1   ||[[User:Koan|mckoan]]  [3] ||none               ||clean      ||&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||angstrom-2010.x   ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||angstrom-2010.x   ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||minimal           ||minimal-image console-image meta-toolchain                                              ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 4361ce1   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||minimal           ||minimal-image console-image qt4e-demo-image x11-image meta-toolchain meta-toolchain-qte qt4-x11-demo-image ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 a643fb8   ||clean            || OK&lt;br /&gt;
|-&lt;br /&gt;
|sarge-at91     ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106269/&lt;br /&gt;
|-&lt;br /&gt;
|mx25-3stack    ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11139794.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106271/&lt;br /&gt;
|-&lt;br /&gt;
|mx31ads        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11142598.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106281/&lt;br /&gt;
|-&lt;br /&gt;
|babbage        ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : http://tinderbox.openembedded.net/public/logs/task/11145126.txt OK without meta-toolchain : http://tinderbox.openembedded.net/builds/106289/&lt;br /&gt;
|-&lt;br /&gt;
|i586-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            ||  gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|i686-generic   ||micro             ||micro-image micro-base-image meta-toolchain                                             ||Debian Sid 64-bit || 1.10.1         ||[[User:Eric]]  ||release-2010.12 2ff40cc   ||clean            || gcc-cross-sdk failure : not catched by tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|palmpre   ||shr             ||shr-lite-image                                            ||Debian Sid 64-bit || 1.11         ||[[User:morphis]]  ||release-2010.12 8733e77   ||clean            || &lt;br /&gt;
|-&lt;br /&gt;
|at91sam9m10g45ek   ||angstrom-2010.x   ||console-image x11-image x11-gpe-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|at91sam9g20ek   ||angstrom-2010.x   ||console-image ||Red Hat Enterprise Linux Client release 5.2 64-bit || 1.10.1         ||[[User:noglitch]]  ||release-2010.12 a643fb8 ||clean            ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
[3] Testing done by [[User:Koan|mckoan]]. Resources kindly provided by [http://www.koansoftware.com/ Koan sas]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3156</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3156"/>
		<updated>2010-11-14T18:19:28Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: updated testing_2010-11-12 results for eFfeM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]]&lt;br /&gt;
&lt;br /&gt;
= Test combinations =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|p2020ds        ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||native-sdk-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||nas-server-image                      ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|mpc8315e-rdb   ||minimal           ||meta-toolchain                        ||Ubuntu 9.10 64-bit || 1.10.1         ||[[User:trini]]  ||testing_2010-11-12           ||clean            ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-29 ||inc ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-29 ||inc ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-11-12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2010.x   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10.1 ||[[Stefan]]      ||||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Ubuntu 10.10 32-bit   || 1.10.1 ||[[Stefan]]      ||testing_2010-11-12||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2010.x   ||openjdk-6  ||Ubuntu 10.10 32-bit   || 1.10.1 ||[[Stefan]]      ||||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||clean || kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal-uclibc   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||clean ||telnet-netkit: powerpc-oe-linux/bin/ld: final link failed: Nonrepresentable section on output&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||clean || Kernel: cc1: error: command line option ‘-m4-nofpu’ is not supported by this configuration&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-11-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-11-12: fails (system thinks nios2 is an os2 system)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-11-12 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 ||clean || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.1 ||tharvey      ||testing_2010-11-05||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||testing_2010-11-05||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||testing_2010-11-05||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||testing_2010-11-05||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.1||tharvey      ||testing_2010-11-05||clean ||angstrom-version fails: http://tinderbox.openembedded.net/public/logs/task/9681211.txt - fixed in master&lt;br /&gt;
|-&lt;br /&gt;
|qemux86      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Lenny 64-bit   ||1.10-git ||[[User:Jay7|Jay7]]   ||testing_2010-10-29 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|akita, tosa  ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||testing_2010-10-29 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|collie       ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||testing_2010-10-29 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|ben-nanonote ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||testing_2010-10-29 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx      ||angstrom-2008.1   ||console-image, x11-image, opie-image        ||Debian Squeeze 64-bit ||master   ||[[User:Jay7|Jay7]]   ||none               ||clean || testing_2010-10-29 failed on [http://tinderbox.openembedded.net/packages/947790/ efikamx_kernel_do_unpack]&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers preferably do an incremental build (from last weeks snapshot), then clean tmp and do a clean build of the combinations they test.  If time or resources are not available, then incremental builds are not required.  After builds are complete, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
* [[TestingScript]] by [[User:EFfeM|EFfeM]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-29&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3061</id>
		<title>TestingScript</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3061"/>
		<updated>2010-11-05T08:39:08Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Testing Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Testing Script =&lt;br /&gt;
&lt;br /&gt;
In order to run the OE testing builds a small script has been created. It is felt that this might be useful for others so I am putting and documenting it here.&lt;br /&gt;
The latest version of the script can also be found in the openembedded tree in contrib/testing/testscript.sh&lt;br /&gt;
&lt;br /&gt;
== The conf file ==&lt;br /&gt;
The local.conf used:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
# You can start a trivial server with &#039;python -m SimpleHTTPServer&#039;&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;http://localhost:8000/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that in order to use the above conf you need to have:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A full script ==&lt;br /&gt;
I have wrapped things together with a small shell script to checkout oe if needed, and to checkout the testing branch:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# test if we have an openembedded dir, clone it if it does not exist&lt;br /&gt;
if [ ! -d openembedded ]&lt;br /&gt;
then&lt;br /&gt;
    (git clone git://git.openembedded.org/openembedded)&lt;br /&gt;
    (cd openembedded; git checkout -b testing-next origin/testing-next)&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# switch to the testing branch&lt;br /&gt;
(cd openembedded; git checkout testing-next)&lt;br /&gt;
&lt;br /&gt;
# test if bitbake exist; if not; fetch it and untar it&lt;br /&gt;
if [ ! -d bitbake-1.10.1 ]&lt;br /&gt;
then&lt;br /&gt;
    (wget http://download.berlios.de/bitbake/bitbake-1.10.1.tar.gz; tar xf bitbake-1.10.1.tar.gz; rm bitbake-1.10.0.tar.gz) &lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# TOPDIR is where we are now&lt;br /&gt;
TOPDIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
# add bitbake to the path&lt;br /&gt;
export PATH=${TOPDIR}/bitbake-1.10.1/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
# create a local.conf by using a here document&lt;br /&gt;
cat &amp;gt; ${TOPDIR}/openembedded/conf/local.conf &amp;lt;&amp;lt; EOF&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
# You can start a trivial server with &#039;python -m SimpleHTTPServer&#039;&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;http://localhost:8000/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&lt;br /&gt;
# smake sure BB_ENV_EXTRAWHIT is correct, and export the needed vars&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
export BBPATH=${TOPDIR}/openembedded&lt;br /&gt;
&lt;br /&gt;
# pull the current branch; in case a stale lock exists remove it&lt;br /&gt;
(cd openembedded; rm -f .git/index.lock;git pull)&lt;br /&gt;
&lt;br /&gt;
# clean tmp; I want to start with a clean build; if you changed TMPDIR in the conf file better change it here too.&lt;br /&gt;
rm -rf ${TOPDIR}/tmp&lt;br /&gt;
&lt;br /&gt;
# add an echo about the vars so we can see what has been done in a log file&lt;br /&gt;
echo $MACHINE $DISTRO $TARGET_RECIPE&lt;br /&gt;
&lt;br /&gt;
# and do the actual work.&lt;br /&gt;
bitbake ${TARGET_RECIPE}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This script uses the external env variables MACHINE, DISTRO and TARGET_RECIPE.&amp;lt;br&amp;gt;&lt;br /&gt;
You might of course add these to the beginning of the script. E.g.:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MACHINE=&amp;quot;beagleboard&amp;quot;&lt;br /&gt;
DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (1) ==&lt;br /&gt;
&lt;br /&gt;
I use hudson (www.hudson.org) as autobuilder. If you also want to do that install hudson and create a small project.&amp;lt;br&amp;gt;&lt;br /&gt;
The first option is to create a job with one build step and use the script above as build step. In order to get the env vars working I checked &amp;quot;This build is parametrized&amp;quot; and defined 3 enum parameters named MACHINE, DISTRO and TARGET_RECIPE. Make sure the parameters are of the enum type. The value you choose when running the build will be passed as environment variable.&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (2) ==&lt;br /&gt;
A more advanced mechanism is to build a multiconfiguration with hudson.&lt;br /&gt;
&lt;br /&gt;
This is done by selecting &amp;quot;Build multi-configuration project&amp;quot; when creating the job. Note that you cannot change a regular project in a multi-configuration project.&lt;br /&gt;
After having done that you can select your configuration matrix. This can have multiple axes. When building hudson, by default it will compile all permutations. However mechanisms exist to limit the # of permutations.&lt;br /&gt;
&lt;br /&gt;
I have been a little bit lazy here. I only created one axe (MACHINE) and as I only wanted to build one distro and image for each machine I prepended the script above with a little bit of selection code:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
if [ $MACHINE = &amp;quot;neek&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2le&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2be&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;calamari&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;mpc8313e-rdb&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;sheevaplug&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You get the idea.&lt;br /&gt;
&lt;br /&gt;
One more small remark: multi-configuration will build each config in its own dir. The disadvantage is that each dir has its own copy of oe, bitbake, downloads etc.&lt;br /&gt;
I have avoided this by simply doing a &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ../..&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
as the start of the script.&lt;br /&gt;
This causes hudson to build everything two levels up.&lt;br /&gt;
&lt;br /&gt;
And if you want to run things periodically create a build trigger for it.&lt;br /&gt;
I use:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
0 18 * * 5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Which starts the script every friday (5) at 18.00 local time, so hopefully there are results after the weekend.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
This terminates my wrap up of my build script.&lt;br /&gt;
Feel free to update it with improvements, better solutions etc.&lt;br /&gt;
&lt;br /&gt;
--- eFfeM, nov 4, 2010&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3060</id>
		<title>TestingScript</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3060"/>
		<updated>2010-11-05T07:59:05Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* A full script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Testing Script =&lt;br /&gt;
&lt;br /&gt;
In order to run the OE testing builds a small script has been created. It is felt that this might be useful for others so I am putting and documenting it here.&lt;br /&gt;
&lt;br /&gt;
== The conf file ==&lt;br /&gt;
The local.conf used:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
# You can start a trivial server with &#039;python -m SimpleHTTPServer&#039;&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;http://localhost:8000/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that in order to use the above conf you need to have:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A full script ==&lt;br /&gt;
I have wrapped things together with a small shell script to checkout oe if needed, and to checkout the testing branch:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# test if we have an openembedded dir, clone it if it does not exist&lt;br /&gt;
if [ ! -d openembedded ]&lt;br /&gt;
then&lt;br /&gt;
    (git clone git://git.openembedded.org/openembedded)&lt;br /&gt;
    (cd openembedded; git checkout -b testing-next origin/testing-next)&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# switch to the testing branch&lt;br /&gt;
(cd openembedded; git checkout testing-next)&lt;br /&gt;
&lt;br /&gt;
# test if bitbake exist; if not; fetch it and untar it&lt;br /&gt;
if [ ! -d bitbake-1.10.1 ]&lt;br /&gt;
then&lt;br /&gt;
    (wget http://download.berlios.de/bitbake/bitbake-1.10.1.tar.gz; tar xf bitbake-1.10.1.tar.gz; rm bitbake-1.10.0.tar.gz) &lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# TOPDIR is where we are now&lt;br /&gt;
TOPDIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
# add bitbake to the path&lt;br /&gt;
export PATH=${TOPDIR}/bitbake-1.10.1/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
# create a local.conf by using a here document&lt;br /&gt;
cat &amp;gt; ${TOPDIR}/openembedded/conf/local.conf &amp;lt;&amp;lt; EOF&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
# You can start a trivial server with &#039;python -m SimpleHTTPServer&#039;&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;http://localhost:8000/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&lt;br /&gt;
# smake sure BB_ENV_EXTRAWHIT is correct, and export the needed vars&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
export BBPATH=${TOPDIR}/openembedded&lt;br /&gt;
&lt;br /&gt;
# pull the current branch; in case a stale lock exists remove it&lt;br /&gt;
(cd openembedded; rm -f .git/index.lock;git pull)&lt;br /&gt;
&lt;br /&gt;
# clean tmp; I want to start with a clean build; if you changed TMPDIR in the conf file better change it here too.&lt;br /&gt;
rm -rf ${TOPDIR}/tmp&lt;br /&gt;
&lt;br /&gt;
# add an echo about the vars so we can see what has been done in a log file&lt;br /&gt;
echo $MACHINE $DISTRO $TARGET_RECIPE&lt;br /&gt;
&lt;br /&gt;
# and do the actual work.&lt;br /&gt;
bitbake ${TARGET_RECIPE}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This script uses the external env variables MACHINE, DISTRO and TARGET_RECIPE.&amp;lt;br&amp;gt;&lt;br /&gt;
You might of course add these to the beginning of the script. E.g.:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MACHINE=&amp;quot;beagleboard&amp;quot;&lt;br /&gt;
DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (1) ==&lt;br /&gt;
&lt;br /&gt;
I use hudson (www.hudson.org) as autobuilder. If you also want to do that install hudson and create a small project.&amp;lt;br&amp;gt;&lt;br /&gt;
The first option is to create a job with one build step and use the script above as build step. In order to get the env vars working I checked &amp;quot;This build is parametrized&amp;quot; and defined 3 enum parameters named MACHINE, DISTRO and TARGET_RECIPE. Make sure the parameters are of the enum type. The value you choose when running the build will be passed as environment variable.&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (2) ==&lt;br /&gt;
A more advanced mechanism is to build a multiconfiguration with hudson.&lt;br /&gt;
&lt;br /&gt;
This is done by selecting &amp;quot;Build multi-configuration project&amp;quot; when creating the job. Note that you cannot change a regular project in a multi-configuration project.&lt;br /&gt;
After having done that you can select your configuration matrix. This can have multiple axes. When building hudson, by default it will compile all permutations. However mechanisms exist to limit the # of permutations.&lt;br /&gt;
&lt;br /&gt;
I have been a little bit lazy here. I only created one axe (MACHINE) and as I only wanted to build one distro and image for each machine I prepended the script above with a little bit of selection code:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
if [ $MACHINE = &amp;quot;neek&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2le&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2be&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;calamari&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;mpc8313e-rdb&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;sheevaplug&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You get the idea.&lt;br /&gt;
&lt;br /&gt;
One more small remark: multi-configuration will build each config in its own dir. The disadvantage is that each dir has its own copy of oe, bitbake, downloads etc.&lt;br /&gt;
I have avoided this by simply doing a &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ../..&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
as the start of the script.&lt;br /&gt;
This causes hudson to build everything two levels up.&lt;br /&gt;
&lt;br /&gt;
And if you want to run things periodically create a build trigger for it.&lt;br /&gt;
I use:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
0 18 * * 5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Which starts the script every friday (5) at 18.00 local time, so hopefully there are results after the weekend.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
This terminates my wrap up of my build script.&lt;br /&gt;
Feel free to update it with improvements, better solutions etc.&lt;br /&gt;
&lt;br /&gt;
--- eFfeM, nov 4, 2010&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3025</id>
		<title>TestingScript</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3025"/>
		<updated>2010-11-04T09:11:07Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: added build trigger&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Testing Script =&lt;br /&gt;
&lt;br /&gt;
In order to run the OE testing builds a small script has been created. It is felt that this might be useful for others so I am putting and documenting it here.&lt;br /&gt;
&lt;br /&gt;
== The conf file ==&lt;br /&gt;
The local.conf used:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;ftp://your-mirror/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that in order to use the above conf you need to have:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A full script ==&lt;br /&gt;
I have wrapped things together with a small shell script to checkout oe if needed, and to checkout the testing branch:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# test if we have an openembedded dir, clone it if it does not exist&lt;br /&gt;
if [ ! -d openembedded ]&lt;br /&gt;
then&lt;br /&gt;
    (git clone git://git.openembedded.org/openembedded)&lt;br /&gt;
    (cd openembedded; git checkout -b testing-next origin/testing-next)&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# switch to the testing branch&lt;br /&gt;
(cd openembedded; git checkout testing-next)&lt;br /&gt;
&lt;br /&gt;
# test if bitbake exist; if not; fetch it and untar it&lt;br /&gt;
if [ ! -d bitbake-1.10.0 ]&lt;br /&gt;
then&lt;br /&gt;
    (wget http://download.berlios.de/bitbake/bitbake-1.10.0.tar.gz; tar xf bitbake-1.10.0.tar.gz; rm bitbake-1.10.0.tar.gz) &lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# TOPDIR is where we are now&lt;br /&gt;
TOPDIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
# add bitbake to the path&lt;br /&gt;
export PATH=${TOPDIR}/bitbake-1.10.0/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
# create a local.conf by using a here document&lt;br /&gt;
cat &amp;gt; ${TOPDIR}/openembedded/conf/local.conf &amp;lt;&amp;lt; EOF&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;ftp://your-mirror/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&lt;br /&gt;
# smake sure BB_ENV_EXTRAWHIT is correct, and export the needed vars&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
export BBPATH=${TOPDIR}/openembedded&lt;br /&gt;
&lt;br /&gt;
# pull the current branch; in case a stale lock exists remove it&lt;br /&gt;
(cd openembedded; rm -f .git/index.lock;git pull)&lt;br /&gt;
&lt;br /&gt;
# clean tmp; I want to start with a clean build; if you changed TMPDIR in the conf file better change it here too.&lt;br /&gt;
rm -rf ${TOPDIR}/tmp&lt;br /&gt;
&lt;br /&gt;
# add an echo about the vars so we can see what has been done in a log file&lt;br /&gt;
echo $MACHINE $DISTRO $TARGET_RECIPE&lt;br /&gt;
&lt;br /&gt;
# and do the actual work.&lt;br /&gt;
bitbake ${TARGET_RECIPE}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This script uses the external env variables MACHINE, DISTRO and TARGET_RECIPE.&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (1) ==&lt;br /&gt;
&lt;br /&gt;
I use hudson (www.hudson.org) as autobuilder. If you also want to do that install hudson and create a small project.&amp;lt;br&amp;gt;&lt;br /&gt;
The first option is to create a job with one build step and use the script above as build step. In order to get the env vars working I checked &amp;quot;This build is parametrized&amp;quot; and defined 3 enum parameters named MACHINE, DISTRO and TARGET_RECIPE. Make sure the parameters are of the enum type. The value you choose when running the build will be passed as environment variable.&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (2) ==&lt;br /&gt;
A more advanced mechanism is to build a multiconfiguration with hudson.&lt;br /&gt;
&lt;br /&gt;
This is done by selecting &amp;quot;Build multi-configuration project&amp;quot; when creating the job. Note that you cannot change a regular project in a multi-configuration project.&lt;br /&gt;
After having done that you can select your configuration matrix. This can have multiple axes. When building hudson, by default it will compile all permutations. However mechanisms exist to limit the # of permutations.&lt;br /&gt;
&lt;br /&gt;
I have been a little bit lazy here. I only created one axe (MACHINE) and as I only wanted to build one distro and image for each machine I prepended the script above with a little bit of selection code:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
if [ $MACHINE = &amp;quot;neek&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2le&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2be&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;calamari&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;mpc8313e-rdb&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;sheevaplug&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You get the idea.&lt;br /&gt;
&lt;br /&gt;
One more small remark: multi-configuration will build each config in its own dir. The disadvantage is that each dir has its own copy of oe, bitbake, downloads etc.&lt;br /&gt;
I have avoided this by simply doing a &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ../..&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
as the start of the script.&lt;br /&gt;
This causes hudson to build everything two levels up.&lt;br /&gt;
&lt;br /&gt;
And if you want to run things periodically create a build trigger for it.&lt;br /&gt;
I use:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
0 18 * * 5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Which starts the script every friday (5) at 18.00 local time, so hopefully there are results after the weekend.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
This terminates my wrap up of my build script.&lt;br /&gt;
Feel free to update it with improvements, better solutions etc.&lt;br /&gt;
&lt;br /&gt;
--- eFfeM, nov 4, 2010&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3024</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3024"/>
		<updated>2010-11-04T09:07:46Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: added link to testing script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://seAs an example on how to configure your test setup see TestingScriptarch.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build.&lt;br /&gt;
&lt;br /&gt;
As an example on how to configure your test setup see [[TestingScript]]&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08 ||clean ||failed with: http://tinderbox.openembedded.net/public/logs/task/9261117.txt, fixed with 5203590b8d31271b255be7eae0c115ba47919872&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-25 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-28||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||clean || kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||clean ||telnet-netkit: powerpc-oe-linux/bin/ld: final link failed: Nonrepresentable section on output&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||clean || Kernel: cc1: error: command line option ‘-m4-nofpu’ is not supported by this configuration&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-14||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-10-29: fails in libX11: see http://tinderbox.openembedded.net/builds/100734/&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 ||clean || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.0 ||tharvey      ||testing_2010-10-29||clean ||QA Issue: [http://tinderbox.openembedded.net/public/logs/qa/904411.txt gcc]&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||QA Issues: [http://tinderbox.openembedded.net/public/logs/qa/905011.txt gcc] [http://tinderbox.openembedded.net/public/logs/qa/904923.txt cups]&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||QA Issue: [http://tinderbox.openembedded.net/public/logs/qa/905862.txt cups]&lt;br /&gt;
|-&lt;br /&gt;
|akita          ||angstrom-2008.1   ||x11-image, opie-image        ||Debian &#039;Lenny&#039; 5.0.6 x86_64 || 1.10-git       ||[[User:Jay7]]   ||testing_2010-10-29 ||clean || There should be link to tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|tosa           ||angstrom-2008.1   ||x11-image, opie-image        ||Debian &#039;Lenny&#039; 5.0.6 x86_64 || 1.10-git       ||[[User:Jay7]]   ||testing_2010-10-29 ||clean || There should be link to tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|collie         ||angstrom-2008.1   ||x11-image, opie-image        ||Debian &#039;Lenny&#039; 5.0.6 x86_64 || 1.10-git       ||[[User:Jay7]]   ||testing_2010-10-29 ||clean || There should be link to tinderbox&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3023</id>
		<title>TestingScript</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=TestingScript&amp;diff=3023"/>
		<updated>2010-11-04T09:05:37Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Testing Script =&lt;br /&gt;
&lt;br /&gt;
In order to run the OE testing builds a small script has been created. It is felt that this might be useful for others so I am putting and documenting it here.&lt;br /&gt;
&lt;br /&gt;
== The conf file ==&lt;br /&gt;
The local.conf used:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;ftp://your-mirror/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that in order to use the above conf you need to have:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A full script ==&lt;br /&gt;
I have wrapped things together with a small shell script to checkout oe if needed, and to checkout the testing branch:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# test if we have an openembedded dir, clone it if it does not exist&lt;br /&gt;
if [ ! -d openembedded ]&lt;br /&gt;
then&lt;br /&gt;
    (git clone git://git.openembedded.org/openembedded)&lt;br /&gt;
    (cd openembedded; git checkout -b testing-next origin/testing-next)&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# switch to the testing branch&lt;br /&gt;
(cd openembedded; git checkout testing-next)&lt;br /&gt;
&lt;br /&gt;
# test if bitbake exist; if not; fetch it and untar it&lt;br /&gt;
if [ ! -d bitbake-1.10.0 ]&lt;br /&gt;
then&lt;br /&gt;
    (wget http://download.berlios.de/bitbake/bitbake-1.10.0.tar.gz; tar xf bitbake-1.10.0.tar.gz; rm bitbake-1.10.0.tar.gz) &lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# TOPDIR is where we are now&lt;br /&gt;
TOPDIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
# add bitbake to the path&lt;br /&gt;
export PATH=${TOPDIR}/bitbake-1.10.0/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
# create a local.conf by using a here document&lt;br /&gt;
cat &amp;gt; ${TOPDIR}/openembedded/conf/local.conf &amp;lt;&amp;lt; EOF&lt;br /&gt;
# fix next line if you want to use your own mirror, then remove the # for the next two lines&lt;br /&gt;
#SOURCE_MIRROR_URL = &amp;quot;ftp://your-mirror/directory&amp;quot;&lt;br /&gt;
#INHERIT += &amp;quot;own-mirrors&amp;quot;&lt;br /&gt;
&lt;br /&gt;
DL_DIR = &amp;quot;${TOPDIR}/downloads&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to keep tmp dirs for different builds you might want to set TMPDIR to e.g. ${TOPDIR}/tmp_${MACHINE}_${DISTRO}&lt;br /&gt;
TMPDIR = &amp;quot;${TOPDIR}/tmp&amp;quot;&lt;br /&gt;
BBFILES = &amp;quot;${TOPDIR}/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Which files do we want to parse:&lt;br /&gt;
BBMASK = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# ccache always overfill $HOME....&lt;br /&gt;
CCACHE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# What kind of images do we want?&lt;br /&gt;
IMAGE_FSTYPES = &amp;quot;tar.gz &amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Make use of my SMP box&lt;br /&gt;
PARALLEL_MAKE=&amp;quot;-j4&amp;quot;&lt;br /&gt;
BB_NUMBER_THREADS = &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
OE_STRICT_CHECKSUMS = &amp;quot;1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you are low on disk space you can remove the next #, disadvantage, nastier debugging in case of failures&lt;br /&gt;
#INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# if you want to report build results (recommended) you need to edit OESTATS_BUILDER and add your name or nick in it, then uncomment the next 3 lines.&lt;br /&gt;
#INHERIT += &amp;quot;oestats-client&amp;quot;&lt;br /&gt;
#OESTATS_SERVER = &amp;quot;tinderbox.openembedded.net&amp;quot;&lt;br /&gt;
#OESTATS_BUILDER = &amp;quot;your nick goes here&amp;quot;&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&lt;br /&gt;
# smake sure BB_ENV_EXTRAWHIT is correct, and export the needed vars&lt;br /&gt;
BB_ENV_EXTRAWHITE=&amp;quot;MACHINE DISTRO TOPDIR&amp;quot;&lt;br /&gt;
export BB_ENV_EXTRAWHITE MACHINE DISTRO TOPDIR&lt;br /&gt;
export BBPATH=${TOPDIR}/openembedded&lt;br /&gt;
&lt;br /&gt;
# pull the current branch; in case a stale lock exists remove it&lt;br /&gt;
(cd openembedded; rm -f .git/index.lock;git pull)&lt;br /&gt;
&lt;br /&gt;
# clean tmp; I want to start with a clean build; if you changed TMPDIR in the conf file better change it here too.&lt;br /&gt;
rm -rf ${TOPDIR}/tmp&lt;br /&gt;
&lt;br /&gt;
# add an echo about the vars so we can see what has been done in a log file&lt;br /&gt;
echo $MACHINE $DISTRO $TARGET_RECIPE&lt;br /&gt;
&lt;br /&gt;
# and do the actual work.&lt;br /&gt;
bitbake ${TARGET_RECIPE}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This script uses the external env variables MACHINE, DISTRO and TARGET_RECIPE.&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (1) ==&lt;br /&gt;
&lt;br /&gt;
I use hudson (www.hudson.org) as autobuilder. If you also want to do that install hudson and create a small project.&amp;lt;br&amp;gt;&lt;br /&gt;
The first option is to create a job with one build step and use the script above as build step. In order to get the env vars working I checked &amp;quot;This build is parametrized&amp;quot; and defined 3 enum parameters named MACHINE, DISTRO and TARGET_RECIPE. Make sure the parameters are of the enum type. The value you choose when running the build will be passed as environment variable.&lt;br /&gt;
&lt;br /&gt;
== Getting things on Hudson autobuilder (2) ==&lt;br /&gt;
A more advanced mechanism is to build a multiconfiguration with hudson.&lt;br /&gt;
&lt;br /&gt;
This is done by selecting &amp;quot;Build multi-configuration project&amp;quot; when creating the job. Note that you cannot change a regular project in a multi-configuration project.&lt;br /&gt;
After having done that you can select your configuration matrix. This can have multiple axes. When building hudson, by default it will compile all permutations. However mechanisms exist to limit the # of permutations.&lt;br /&gt;
&lt;br /&gt;
I have been a little bit lazy here. I only created one axe (MACHINE) and as I only wanted to build one distro and image for each machine I prepended the script above with a little bit of selection code:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
if [ $MACHINE = &amp;quot;neek&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2le&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;nslu2be&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;slugos&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;slugos-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;calamari&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;mpc8313e-rdb&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
if [ $MACHINE = &amp;quot;sheevaplug&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
    DISTRO=&amp;quot;minimal&amp;quot;&lt;br /&gt;
    TARGET_RECIPE=&amp;quot;console-image&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You get the idea.&lt;br /&gt;
&lt;br /&gt;
One more small remark: multi-configuration will build each config in its own dir. The disadvantage is that each dir has its own copy of oe, bitbake, downloads etc.&lt;br /&gt;
I have avoided this by simply doing a &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ../..&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
as the start of the script.&lt;br /&gt;
This causes hudson to build everything two levels up.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
This terminates my wrap up of my build script.&lt;br /&gt;
Feel free to update it with improvements, better solutions etc.&lt;br /&gt;
&lt;br /&gt;
--- eFfeM, nov 4, 2010&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3022</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=3022"/>
		<updated>2010-11-04T08:28:51Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08 ||clean ||failed with: http://tinderbox.openembedded.net/public/logs/task/9261117.txt, fixed with 5203590b8d31271b255be7eae0c115ba47919872&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-25 ||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-28||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||clean || kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||clean ||telnet-netkit: powerpc-oe-linux/bin/ld: final link failed: Nonrepresentable section on output&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||clean || Kernel: cc1: error: command line option ‘-m4-nofpu’ is not supported by this configuration&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-14||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||clean ||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||clean ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-25||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||clean ||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     ||None                ||clean || testing_2010-10-29: fails in libX11: see http://tinderbox.openembedded.net/builds/100734/&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-29 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 ||clean || &lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 ||clean || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain  ||Ubuntu 10.04 64-bit   || 1.10.0 ||tharvey      ||testing_2010-10-29||clean ||QA Issue: [http://tinderbox.openembedded.net/public/logs/qa/904411.txt gcc]&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||meta-toolchain-qte  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||QA Issues: [http://tinderbox.openembedded.net/public/logs/qa/905011.txt gcc] [http://tinderbox.openembedded.net/public/logs/qa/904923.txt cups]&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||x-load  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||u-boot  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||&lt;br /&gt;
|-&lt;br /&gt;
|overo     ||angstrom-2008.1   ||console-image  ||Ubuntu 10.04 64-bit   || 1.10.0||tharvey      ||testing_2010-10-29||clean ||QA Issue: [http://tinderbox.openembedded.net/public/logs/qa/905862.txt cups]&lt;br /&gt;
|-&lt;br /&gt;
|akita          ||angstrom-2008.1   ||x11-image, opie-image        ||Debian &#039;Lenny&#039; 5.0.6 x86_64 || 1.10-git       ||[[User:Jay7]]   ||testing_2010-10-29 ||clean || There should be link to tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|tosa           ||angstrom-2008.1   ||x11-image, opie-image        ||Debian &#039;Lenny&#039; 5.0.6 x86_64 || 1.10-git       ||[[User:Jay7]]   ||testing_2010-10-29 ||clean || There should be link to tinderbox&lt;br /&gt;
|-&lt;br /&gt;
|collie         ||angstrom-2008.1   ||x11-image, opie-image        ||Debian &#039;Lenny&#039; 5.0.6 x86_64 || 1.10-git       ||[[User:Jay7]]   ||testing_2010-10-29 ||clean || There should be link to tinderbox&lt;br /&gt;
|-&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;build type&#039;&#039;&#039; !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Useful software =&lt;br /&gt;
* Hudson http://hudson-ci.org/&lt;br /&gt;
* BuildBot http://buildbot.net/trac&lt;br /&gt;
* [[Testing:TestBuilder|TestBuilder]] by [[User:Jay7|Jay7]]&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-25&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2945</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2945"/>
		<updated>2010-10-26T14:37:56Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||failed with: http://tinderbox.openembedded.net/builds/96943/, c9ac99f13f603d15e9a852916cc4daa4a4d210bc is a fix&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08|| testing_2010-10-14 failed in icedtea6-native configure. da137a2144 is the fix in master for this.&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27|| GCC 4.5 fails on multlib options for sh3/ml ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-25: fails in libgee native (see ML)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || testing_2010-10-25: endless loop in e2fsprogs (etex txiversion.tex)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || testing_2010-10-25: endless loop in e2fsprogs (etex txiversion.tex)&lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || testing_2010-10-25: fails in libgee native (see ML)&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || testing_2010-10-25: fails in libgee native (see ML)&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || testing_2010-10-25: fails in libgee native (see ML)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the tested_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=tested_2010-10-14&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Fosdem_2010&amp;diff=2940</id>
		<title>Fosdem 2010</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Fosdem_2010&amp;diff=2940"/>
		<updated>2010-10-22T14:13:14Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Attending FOSDEM 2010?  Add your name to this page so that other developers can look out for you!&lt;br /&gt;
&lt;br /&gt;
* Phil Blundell&lt;br /&gt;
* Henning Heinold&lt;br /&gt;
* Marco Cavallini (mckoan)&lt;br /&gt;
* Frans Meulenbroeks (eFfeM)&lt;br /&gt;
* Ulf Samuelsson&lt;br /&gt;
* Marcin Juszkiewicz&lt;br /&gt;
* Alessandro Gardich (gremlin)&lt;br /&gt;
* Florian Boor&lt;br /&gt;
* Denis Carikli (GNUtoo)&lt;br /&gt;
* Robert Schuster (rschuster/thebohemian)&lt;br /&gt;
* Paul Eggleton (bluelightning)&lt;br /&gt;
* Boudewijn Kranendonk&lt;br /&gt;
* Klaas van Gend&lt;br /&gt;
* Rolf &#039;Laibsch&#039; Leggewie&lt;br /&gt;
* Xerxes Ranby&lt;br /&gt;
* Joshua Lock (incandescant)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
&lt;br /&gt;
Although FOSDEM itself takes place at the ULB campus, most folks prefer to stay nearer the city centre.&lt;br /&gt;
&lt;br /&gt;
The Astrid has traditionally been the default choice for OE developers, though there are many other hotels in the area.  If you are staying in a hotel other than the Astrid, feel free to add it to this section for the benefit of others.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Staying at Scandic,  (75 Euro/night)&lt;br /&gt;
A stone throw from the Friday Beer Event&lt;br /&gt;
Good communications with the Campus. Bus Stop right outside.&lt;br /&gt;
/Ulf Samuelsson&lt;br /&gt;
&lt;br /&gt;
Staying in Atlas (near Astrid), only saturday evening. I will also bring some books and my eeepc and openrd board --- eFfeM&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Kernel_Building&amp;diff=2933</id>
		<title>Kernel Building</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Kernel_Building&amp;diff=2933"/>
		<updated>2010-10-21T07:11:07Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Default Build ==&lt;br /&gt;
&lt;br /&gt;
For a default build, just run:&lt;br /&gt;
  bitbake virtual/kernel&lt;br /&gt;
&lt;br /&gt;
After done, you can collect the built image from under the deploy folder, for example: &amp;lt;tt&amp;gt;build/tmp/deploy/glibc/images/vmware/bzImage-vmware.bin&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kernel image type ==&lt;br /&gt;
&lt;br /&gt;
What kind of kernel image to build is controlled by the variable &amp;lt;tt&amp;gt;KERNEL_IMAGETYPE&amp;lt;/tt&amp;gt;. For example, build image for u-boot&lt;br /&gt;
  KERNEL_IMAGETYPE = &amp;quot;uImage&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Select kernel version ==&lt;br /&gt;
&lt;br /&gt;
To select which kernel version to build, edit config file ??? and set variable ??? to , for example, 2.6.35.&lt;br /&gt;
&lt;br /&gt;
== Kernel patches ==&lt;br /&gt;
&lt;br /&gt;
Where to place the patch files and how to configure OE to apply them?&lt;br /&gt;
&lt;br /&gt;
== Kernel configuration ==&lt;br /&gt;
&lt;br /&gt;
The default .config file used is placed in ???/defconfig.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you need to customize the kernel configuration, run the menuconfig task by:&lt;br /&gt;
  bitbake -c menuconfig virtual/kernel&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; by default this command requires you to run in X Windows.&lt;br /&gt;
&lt;br /&gt;
After that, you can compile the kernel by:&lt;br /&gt;
  bitbake -f -c compile virtual/kernel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:User]]&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2907</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2907"/>
		<updated>2010-10-19T06:21:01Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08|| testing_2010-10-14 failed in icedtea6-native configure. da137a2144 is the fix in master for this.&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27|| GCC 4.5 fails on multlib options for sh3/ml ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-14: fails in libX11 (see http://tinderbox.openembedded.net/builds/96876/&lt;br /&gt;
)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2903</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2903"/>
		<updated>2010-10-18T10:08:48Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08|| testing_2010-10-14 failed in icedtea6-native configure. da137a2144 is the fix in master for this.&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27|| GCC 4.5 fails on multlib options for sh3/ml ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-14: fails (mirror to fetch nios2 kernel is down)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 8.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2901</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2901"/>
		<updated>2010-10-18T06:58:05Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08|| testing_2010-10-14 failed in icedtea6-native configure. da137a2144 is the fix in master for this.&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||kernel-2.6.31.12-ER1 Error: Package name  contains illegal characters, (other than [a-z0-9.+-])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27|| GCC 4.5 fails on multlib options for sh3/ml ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-14: [http://tinderbox.openembedded.org/packages/859111/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-14: fails (mirror to fetch nios2 kernel is down)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2894</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2894"/>
		<updated>2010-10-16T18:38:54Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27|| GCC 4.5 fails on multlib options for sh3/ml ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-08: [http://tinderbox.openembedded.net/packages/835265/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-14: fails (mirror to fetch nios2 kernel is down)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2893</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2893"/>
		<updated>2010-10-16T11:06:40Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27|| GCC 4.5 fails on multlib options for sh3/ml ||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-08: [http://tinderbox.openembedded.net/packages/835265/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-14: fails (mirror to fetch nios2 kernel is down)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2891</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2891"/>
		<updated>2010-10-16T07:44:45Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27| GCC 4.5 fails on multlib options for sh3/ml |&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-08: [http://tinderbox.openembedded.net/packages/835265/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-14: fails (mirror to fetch nios2 kernel is down)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native (configure): http://tinderbox.openembedded.net/builds/94014/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2890</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2890"/>
		<updated>2010-10-16T07:43:55Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
* [http://search.gmane.org/?query=testing+branch&amp;amp;author=&amp;amp;group=gmane.comp.handhelds.openembedded&amp;amp;sort=date&amp;amp;DEFAULTOP=and&amp;amp;xP=Ztest%09Zbranch&amp;amp;xFILTERS=Gcomp.handhelds.openembedded---A mail list discussions related to the testing branch]&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;  !!&#039;&#039;&#039;bitbake&#039;&#039;&#039;   !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   || ||[[User:Cbrake]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   || 1.10 ||[[Stefan]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Ubuntu 10.10 64-bit   || ||[[User:khem]]      ||testing_2010-09-27||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit  || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-09-27| GCC 4.5 fails on multlib options for sh3/ml |&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   || ||[[User:khem]]      ||testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   || ||grg      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||testing_2010-09-13 fails to build xf86-input-mouse&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   || ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||x11-gpe-image  ||Fedora 12 32-bit   || ||[[User:gthomas]]      ||testing_2010-10-04||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-10-08||&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2010.x || imote2-image || Gentoo || || [[User:jic23]] || testing_2010-09-27||Testing 2010-10-04 failed on udev 151 - looks like it might be a random compiler glitch. http://tinderbox.openembedded.net/public/logs/task/8417935.txt. Still failing with 2010-10-08&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||testing_2010-10-14||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-10-08: [http://tinderbox.openembedded.net/packages/835265/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit || 1.8.18 ||[[User:Sledz|Sledz]] [2]||None||testing_2010-09-20: [http://tinderbox.openembedded.org/packages/785898/ do_configure epiphany failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek         ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     ||None                || testing_2010-10-08: fails (mirror to fetch nios2 kernel is down)&lt;br /&gt;
|-&lt;br /&gt;
|nslu2le      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 ||&lt;br /&gt;
|-&lt;br /&gt;
|nslu2be      ||slugos   ||slugos-image   ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-10-14 || &lt;br /&gt;
|-&lt;br /&gt;
|calamari     ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native (configure): http://tinderbox.openembedded.net/builds/94014/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|mpc8313e-rdb ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|-&lt;br /&gt;
|sheevaplug   ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   || 1.10 ||eFfeM [1]     || testing_2010-09-27 || testing_2010-10-08: fails building libgee-native&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2008.1  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|ts72xx   ||angstrom-2010.x  ||minimal-image  ||Ubuntu 10.04 32-bit   || master ||ynezz     || testing_2010-10-14 || Builds only with CFLAGS_append = &amp;quot; -Os&amp;quot; in udev recipe.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&amp;lt;br /&amp;gt;&lt;br /&gt;
[2] Testing done by [[User:Sledz|Sledz]]. Resources kindly provided by [http://www.dresearch.de/ DResearch Digital Media Systems GmbH]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting at approximately 9PM GMT of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Thursday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-07&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-13&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-20&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-09-27&lt;br /&gt;
* http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-10-08&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Oedem/2010&amp;diff=2876</id>
		<title>Oedem/2010</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Oedem/2010&amp;diff=2876"/>
		<updated>2010-10-15T07:14:01Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Agenda Suggestions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OpenEmbedded Developers&#039; Meeting 2010 will be in Cambridge, UK on the 29th and 30th of October. This is after http://www.embeddedlinuxconference.com/elc_europe10/index.html and will be held in the same place, the University Arms Hotel  (http://www.devere.co.uk/our-locations/university-arms).&lt;br /&gt;
&lt;br /&gt;
All developers and other interested parties are welcome.&lt;br /&gt;
&lt;br /&gt;
== Location ==&lt;br /&gt;
&lt;br /&gt;
Call ... if you get hopelessly lost.&lt;br /&gt;
&lt;br /&gt;
== Registration ==&lt;br /&gt;
&lt;br /&gt;
Due to restricted space at the venue, the number of attendees is strictly limited.&lt;br /&gt;
&lt;br /&gt;
== Agenda Suggestions ==&lt;br /&gt;
&lt;br /&gt;
* FM: I would like to suggest a discussion on recipe quality and how to improve it. I must say that I am somewhat disappointed by the number of recipes that do not fetch or do not patch. How are we going to handle this&lt;br /&gt;
* FM: related to the previous: how to deal with orphaned recipes, distros and machines&lt;br /&gt;
* FM: suggest to re-institute the MAINTAINERS field, at least for distro and machine conf files but preferably also in recipes. Currently it is often not clear who maintains what&lt;br /&gt;
* FM: review/commit/revert policy (e.g. formalize the suggestion that NAKs need to be motivated and that submitted patches can be pushed if there is no neg feedback within say 2 weeks (even if there is no feedback at all).&lt;br /&gt;
* FM: maybe discuss the testing branch/procedures&lt;br /&gt;
* FM: usage of DEFAULT_PREFERENCE = &amp;quot;-1&amp;quot; (and more concrete: the creation of new recipes with DP = -1, that never seem to loose its DP)&lt;br /&gt;
*Khem: Libtool 2.4 upgrade.&lt;br /&gt;
*Khem: bitbake world. What do we do ?&lt;br /&gt;
*Khem: patchwork workflow&lt;br /&gt;
*Khem: Security updates how to handle&lt;br /&gt;
*Khem: Make LICENSE field mandatory in recipes&lt;br /&gt;
*Khem: Time based releases ( one a year)&lt;br /&gt;
*Hrw: recipes/ subdirectories (all &amp;quot;inherit opie&amp;quot; or &amp;quot;inherit palmtop&amp;quot; -&amp;gt; recipes/opie/ dir etc)&lt;br /&gt;
*RP: srctree, srcrev mess, pain with linux-wrs - time to rework the scm fetchers?&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Friday ===&lt;br /&gt;
&lt;br /&gt;
====OpenEmbedded eV General Assembly====&lt;br /&gt;
&lt;br /&gt;
This is the formal eV meeting. Principal topics are financial reports, the board election, and voting in of new members.&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
[[GA2010]]&lt;br /&gt;
&lt;br /&gt;
=== Saturday ===&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Travel==&lt;br /&gt;
&lt;br /&gt;
London Stansted airport is the nearest to Cambridge with regular service. (There is a small airport in Cambridge itself but I don&#039;t think any scheduled airlines operate from there anymore.)&lt;br /&gt;
&lt;br /&gt;
For those travelling from Europe, Stansted is about a 30-minute train ride from Cambridge city centre and is served by Air Berlin, Ryanair and Germanwings among others. Luton airport is about 1 hour away by bus and is served by Easyjet.&lt;br /&gt;
&lt;br /&gt;
For those travelling from further away, most long-haul flights arrive at Heathrow or Gatwick airports (although there is some transatlantic service into Stansted). Both Heathrow and Gatwick are about 2 hours from Cambridge by train or bus: the train is quicker but involves several changes in London, whereas the bus is slow but cheaper and less complicated.&lt;br /&gt;
&lt;br /&gt;
If arriving at LHR airport, take the Piccadilly line from the Underground station and ride it all the way to Kings Cross St Pancras. Ascend to street level, follow signs to Kings Cross mainline station (not St Pancras: the two stations are different although they share a subway stop) and then look for trains to Cambridge or Kings Lynn on the departure board. There are usually two fast services and two slow services to Cambridge per hour: the slow trains are often overtaken by the fast ones en route so it may be best to wait for a fast service even if this is not the next to depart.&lt;br /&gt;
&lt;br /&gt;
If arriving at LCY, take the DLR to Bank, then change to the Northern Line northbound. From Kings Cross St Pancras, proceed as for LHR, above.&lt;br /&gt;
&lt;br /&gt;
http://nationalrail.co.uk&lt;br /&gt;
&lt;br /&gt;
http://nationalexpress.co.uk/&lt;br /&gt;
&lt;br /&gt;
Alternatively you can take the Eurostar to London St Pancras, which is 50 minutes from Cambridge by train. &lt;br /&gt;
&lt;br /&gt;
See also the ELCE10 website for some travel informations: http://www.embeddedlinuxconference.com/elc_europe10/hotel.html&lt;br /&gt;
&lt;br /&gt;
==Accommodation==&lt;br /&gt;
&lt;br /&gt;
The nearest full-service hotel is ...&lt;br /&gt;
&lt;br /&gt;
Cheapest accomodation is ...&lt;br /&gt;
&lt;br /&gt;
==Food and drink==&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Attending for sure==&lt;br /&gt;
&lt;br /&gt;
# Philip Balister&lt;br /&gt;
# Florian Boor&lt;br /&gt;
# Denys Dmytriyenko&lt;br /&gt;
# Mark Hatle&lt;br /&gt;
# Koen Kooi&lt;br /&gt;
# Fabio Mauri (friday until 15:00)&lt;br /&gt;
# Frans Meulenbroeks&lt;br /&gt;
# Jeff Polk&lt;br /&gt;
# Richard Purdie&lt;br /&gt;
# Raffaele Recalcati (friday until 15:00)&lt;br /&gt;
# Stefan Schmidt&lt;br /&gt;
# Leon Woestenberg&lt;br /&gt;
# Saul Wold&lt;br /&gt;
&lt;br /&gt;
==Attending not yet sure==&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
==Won&#039;t be able to attend==&lt;br /&gt;
# Michael Lauer -- really sorry :/&lt;br /&gt;
&lt;br /&gt;
[[Category:OEDEM]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2558</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2558"/>
		<updated>2010-09-08T07:01:51Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a provide a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;     !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   ||[[User:Cbrake]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   ||[[User:Cbrake]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   ||[[Stefan]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Kubuntu 10.10(Beta) 64-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal-uclibc   ||x11-image  ||Ubuntu 10.04 64-bit  ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   ||[[User:khem]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   ||[[User:grg]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || [[User:jic23]] || testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||None||[http://tinderbox.openembedded.org/packages/734326/ do_configure gtk+-native failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||None||[http://tinderbox.openembedded.org/packages/734813/ do_configure gtk+-native failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||None||[http://tinderbox.openembedded.org/packages/735072/ do_configure gtk+-native failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek      ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   ||eFfeM [1]     ||None || testing_2010-09-07 [http://tinderbox.openembedded.net/public/logs/task/7624153.txt libX11 do-compile failed]&lt;br /&gt;
|-&lt;br /&gt;
|calamari  ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   ||eFfeM [1]     ||None || -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting on Monday of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Monday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* 2010-08-23: http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* 2010-08-30: http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2557</id>
		<title>Testing</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Testing&amp;diff=2557"/>
		<updated>2010-09-08T06:58:58Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded Testing branch is a git branch of the OE metadata with the goal of providing a provide a recent snapshot of OE that is known to be build-able for a subset of distros, machines, images, and host workstations.  The goal of this effort is twofold:&lt;br /&gt;
# the testing branch represents a reasonably stable version of OE that builds for most tested combinations&lt;br /&gt;
# for all tested combinations, we list the last known-good-build tag so that users can always start with something that will build&lt;br /&gt;
&lt;br /&gt;
The test combinations are:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!&#039;&#039;&#039;machine&#039;&#039;&#039;  !!&#039;&#039;&#039;distro&#039;&#039;&#039;      !!&#039;&#039;&#039;target&#039;&#039;&#039;                          !!&#039;&#039;&#039;workstation&#039;&#039;&#039;     !!&#039;&#039;&#039;tester&#039;&#039;&#039;    !!&#039;&#039;&#039;last successful build&#039;&#039;&#039;  !!&#039;&#039;&#039;Current issues&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||beagleboard-linuxtag2010-demo-image  ||Ubuntu 10.04 64-bit   ||[[User:Cbrake]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||console-image                        ||Ubuntu 10.04 64-bit   ||[[User:Cbrake]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|bug20    ||angstrom-2008.1   ||openjdk-6  ||Debian Unstable 64-bit   ||[[Stefan]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|efikamx    ||minimal   ||native-sdk-image  ||Kubuntu 10.10(Beta) 64-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|omap5912osk    ||minimal-uclibc   ||x11-image  ||Ubuntu 10.04 64-bit  ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemumips    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuppc    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemush4    ||minimal   ||native-sdk-image  ||Debian Unstable 32-bit   ||[[User:khem]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemux86    ||minimal   ||native-sdk-image  ||Ubuntu 10.04 64-bit   ||[[User:khem]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemumipsel    ||minimal   ||x11-image  ||Slackware 13.1 64-bit   ||[[User:grg]]      ||testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||x11-gpe-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|qemuarm    ||angstrom-2010.x   ||opie-kdepim-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||None||fails to build pwmpi&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2008.1   ||angstrom-gnome-image  ||Ubuntu 9.10 32-bit   ||[[User:gthomas]]      ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|beagleboard    ||angstrom-2010.x   ||beagleboard-linuxtag2010-demo-image  ||Fedora 12 32-bit   ||[[User:gthomas]]      ||None ||fails to build ti-dsplink if /opt is writeable&lt;br /&gt;
|-&lt;br /&gt;
|imote2 || angstrom-2008.1 || imote2-image || Gentoo || [[User:jic23]] || testing_2010-09-07||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||minimal-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||testing_2010-08-30||&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||console-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||None||[http://tinderbox.openembedded.org/packages/734326/ do_configure gtk+-native failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-gnome-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||None||[http://tinderbox.openembedded.org/packages/734813/ do_configure gtk+-native failed]&lt;br /&gt;
|-&lt;br /&gt;
|hipox ||angstrom-2008.1 ||angstrom-x-image ||openSUSE 11.3 32-bit ||[[User:Sledz|Sledz]] ||None||[http://tinderbox.openembedded.org/packages/735072/ do_configure gtk+-native failed]&lt;br /&gt;
|-&lt;br /&gt;
|neek    ||minimal  ||console-image  ||Ubuntu 10.04 32-bit   ||eFfeM [1]     ||None || [http://tinderbox.openembedded.net/public/logs/task/7624153.txt libX11 do-compile failed]&lt;br /&gt;
|-&lt;br /&gt;
|calamari  ||minimal  ||console-image  ||Ubuntu 10.04 64-bit   ||eFfeM [1]     ||None || -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[1] Testing done by eFfeM. Resources kindly provided by [http://www.axon.tv/ Axon Digital Design]&lt;br /&gt;
&lt;br /&gt;
= Testing Procedure =&lt;br /&gt;
&lt;br /&gt;
The general process for managing the testing branch is:&lt;br /&gt;
# Starting on Monday of every week, the dev.openembedded.org branch is branched to the &#039;&#039;&#039;testing-next&#039;&#039;&#039; branch.&lt;br /&gt;
# Whoever creates the testing-next branch sends an email to the oe-devel list with a subject of &amp;quot;testing branch YYYY-MM-DD&amp;quot;.  All volunteers start a clean build and build the combinations they test, update the above chart, and report status/issues as replies to the above email.&lt;br /&gt;
# If most combinations build by following Monday, the testing-next branch is merged to the &#039;&#039;&#039;testing&#039;&#039;&#039; branch.  Regardless, the repository is tagged with the testing_YYYY-MM-DD tag.  An annotated tag is used with a message that includes a text copy of the above table with variations that have been tested building for this cycle.  The reason we tag after testing is complete is so that we can include status in the annotated tag.  This way information about what was tested with each tagged version is captured in the repository.  A link is added for easy reference to the log below.&lt;br /&gt;
# If a build fails, then issues are reported, and we try to get issues fixed before the next weeks testing cycle.&lt;br /&gt;
# Not every combination is tested on every cycle, due to availability of testers, so we list the last known built version in the above chart.  Testers are responsible for updating the above chart.&lt;br /&gt;
# All testers are encouraged to use [[Tinderbox]] so problems are automatically reported and logged, and issues in the above chart can be linked to Tinderbox.&lt;br /&gt;
&lt;br /&gt;
We strongly encourage chip and SBC/Module vendors to become involved in this effort to ensure OE works for your platforms.&lt;br /&gt;
&lt;br /&gt;
= Testing Log =&lt;br /&gt;
&lt;br /&gt;
* 2010-08-23: http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-23&lt;br /&gt;
* 2010-08-30: http://cgit.openembedded.org/cgit.cgi/openembedded/tag/?id=testing_2010-08-30&lt;br /&gt;
&lt;br /&gt;
[[Category:Quality Assurance]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Getting_started_with_OE-Classic&amp;diff=2320</id>
		<title>Getting started with OE-Classic</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Getting_started_with_OE-Classic&amp;diff=2320"/>
		<updated>2010-06-02T13:48:45Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: /* Obtaining OpenEmbedded using Git */  .net -&amp;gt; .org&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Setting up the toolchain and doing a build =&lt;br /&gt;
&lt;br /&gt;
Before starting to configure your OE installation by following the instructions on this page make sure you have read [[OEandYourDistro|how OE fits in with your host distribution]] and the [[RequiredSoftware|required software for compilation]].&lt;br /&gt;
&lt;br /&gt;
== Directory Structure ==&lt;br /&gt;
The base directory of your Openembedded environment (&amp;lt;nowiki&amp;gt;/stuff/&amp;lt;/nowiki&amp;gt;) is the location where sources will be checked out (or unpacked).&lt;br /&gt;
&lt;br /&gt;
* You must choose a location with &#039;&#039;&#039;no symlinks above it&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* If you work in a chrooted environment and have ccache installed it is highly recommended to &#039;su - &amp;lt;username&amp;gt;&#039; after you have chrooted. Compilation may fail because ccache needs a valid &amp;lt;nowiki&amp;gt;$HOME&amp;lt;/nowiki&amp;gt;, which is usually set when using a user account. It is recommended that ccache is not installed on systems used to build OpenEmbedded as it has been known to introduce other subtle build failures.&lt;br /&gt;
&lt;br /&gt;
To create the directory structure:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ mkdir -p /stuff/build/conf&lt;br /&gt;
$ cd /stuff/&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Obtaining BitBake ==&lt;br /&gt;
To start using OE, you must first obtain the build tool it needs: &amp;lt;nowiki&amp;gt;bitbake&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is recommended to run bitbake without installing it, as a sibling directory of &amp;lt;nowiki&amp;gt;openembedded/&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;build/&amp;lt;/nowiki&amp;gt; directories. Indeed, as bitbake is written in python it does not need to be compiled. You&#039;ll just have to set the PATH variable so that the [[BitBake]] tools are accessible (see [[#Setup the environment|Setup the environment]] section).&lt;br /&gt;
&lt;br /&gt;
===Getting a working bitbake===&lt;br /&gt;
&lt;br /&gt;
Bitbake switched from a svn repository to a git one, and the former is stuck at version 1.8.13, so when you try to build you may face an error: &amp;quot;Bitbake version 1.8.16 is required and version 1.8.13 was found&amp;quot;. In that case please fetch released version or use git repository.&lt;br /&gt;
&lt;br /&gt;
Which version is safe to use? Last release one is always working. When OE changes require newer version of BitBake metadata is changed and you will get message like above.&lt;br /&gt;
&lt;br /&gt;
One note for those who want to play with development versions of BitBake - Python 2.6 may be required by newer versions. This can be a problem for some Linux distributions.&lt;br /&gt;
&lt;br /&gt;
Basically the easier and faster solution (at the moment I&#039;m writing) is to get release one.&lt;br /&gt;
&lt;br /&gt;
  wget http://download.berlios.de/bitbake/bitbake-1.8.18.tar.gz&lt;br /&gt;
&lt;br /&gt;
Laibsch also provides a [http://oss.leggewie.org/oe/deb/bitbake_1.8.18-1_all.deb deb-package for bitbake 1.8.18] that should work in all current Ubuntu and Debian releases.&lt;br /&gt;
&lt;br /&gt;
===Using releases===&lt;br /&gt;
&lt;br /&gt;
Visit [http://developer.berlios.de/projects/bitbake/ BitBake homepage] and download tarball with latest release. For normal usage we suggest using 1.8.x (stable branch) versions. Unpack it to &#039;&#039;&#039;/stuff/bitbake/&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Obtaining OpenEmbedded using Git ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: &#039;&#039;Once upon a time OpenEmbedded was using Monotone for version control. If you have an OE Monotone repository on your computer, you should replace it with the Git repository.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: &#039;&#039;These are only brief instructions. For a longer description about using Git with OpenEmbedded refer to [[Git]] and [[GitPhraseBook]].&lt;br /&gt;
&lt;br /&gt;
The OpenEmbedded project resides in a Git repository. You can find it at &#039;&#039;git://git.openembedded.org/openembedded&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
Web interface is: http://cgit.openembedded.org/&lt;br /&gt;
&lt;br /&gt;
To obtain Openembedded:&lt;br /&gt;
# Install git&lt;br /&gt;
# Go to the base directory of your OpenEmbedded environment&lt;br /&gt;
 $ cd /stuff/&lt;br /&gt;
# Checkout the repository&lt;br /&gt;
 $ git clone git://git.openembedded.org/openembedded&lt;br /&gt;
&lt;br /&gt;
or for the firewall challenged try&lt;br /&gt;
 $ git clone http://repo.or.cz/r/openembedded.git&lt;br /&gt;
&lt;br /&gt;
This is the data you&#039;ll be using for all the work.&lt;br /&gt;
&lt;br /&gt;
=== Updating OpenEmbedded ===&lt;br /&gt;
The .dev branch of OE is updated very frequently (as much as several times an hour). The distro branches are not updated as much but still fairly often. It seems good practice to update your OE tree at least daily. To do this, run&lt;br /&gt;
 $ git pull&lt;br /&gt;
(note: this must be done in the directory created by the checkout of openembedded. On this page, this directory is &amp;lt;tt&amp;gt;/stuff/openembedded&amp;lt;/tt&amp;gt;, but my checkout generated a directory &amp;lt;tt&amp;gt;/stuff/openembedded&amp;lt;/tt&amp;gt;. Check the name of your subdir, and use the name on your machine in the following examples)&lt;br /&gt;
&lt;br /&gt;
== Create local configuration ==&lt;br /&gt;
It&#039;s now time to create your local configuration.&lt;br /&gt;
While you could copy the default local.conf.sample like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ cd /stuff/&lt;br /&gt;
$ cp openembedded/conf/local.conf.sample build/conf/local.conf&lt;br /&gt;
$ vi build/conf/local.conf&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is actually recommended to start smaller and keep local.conf.sample in the background and add entries from there step-by-step as you understand and need them. Please, do not just edit build/conf/local.conf.sample but actually READ it (read it and then edit).&lt;br /&gt;
&lt;br /&gt;
For building a .dev branch, in your &amp;lt;nowiki&amp;gt;local.conf&amp;lt;/nowiki&amp;gt; file, you should have at least the following three entries. Example for the Angstrom distribution and the Openmoko gta01 machine:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
BBFILES = &amp;quot;/stuff/openembedded/recipes/*/*.bb&amp;quot;&lt;br /&gt;
DISTRO = &amp;quot;angstrom-2008.1&amp;quot;&lt;br /&gt;
MACHINE = &amp;quot;om-gta01&amp;quot;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you choose to install OE in your home directory, modify local.conf to refer to the OE paths as  /home/&amp;lt;username&amp;gt;/ rather than ~/. It does not find the *.bb packages otherwise.&lt;br /&gt;
&lt;br /&gt;
== Setup the environment ==&lt;br /&gt;
One of the four command sets below will need to be run every time you open a terminal for development. (You can automate this in ~/.profile, /etc/profile, or perhaps use a script to set the necessary variables for using [[BitBake]].)&lt;br /&gt;
&lt;br /&gt;
If you followed the recommendation above to use [[BitBake]] from Git:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ export BBPATH=/stuff/build:/stuff/openembedded&lt;br /&gt;
$ export PATH=/stuff/bitbake/bin:$PATH&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you installed [[BitBake]]:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ export BBPATH=/stuff/build:/stuff/openembedded&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Alternative syntax for those using the tcsh shell (e.g FreeBSD):&lt;br /&gt;
 &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ setenv PATH &amp;quot;/stuff/bitbake/bin:&amp;quot;$PATH&lt;br /&gt;
$ setenv BBPATH &amp;quot;/stuff/build:/stuff/openembedded:&amp;quot;$BBPATH&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Start building ==&lt;br /&gt;
The primary interface to the build system is the &amp;lt;nowiki&amp;gt;bitbake&amp;lt;/nowiki&amp;gt; command (see the bitbake users manual). &amp;lt;nowiki&amp;gt;bitbake&amp;lt;/nowiki&amp;gt; will download and patch stuff from the network, so it helps if you are on a well connected machine.&lt;br /&gt;
&lt;br /&gt;
Note that you should issue all bitbake commands from inside of the &amp;lt;nowiki&amp;gt;build/&amp;lt;/nowiki&amp;gt; directory, or you should override TMPDIR to point elsewhere (by default it goes to &amp;lt;nowiki&amp;gt;tmp/&amp;lt;/nowiki&amp;gt; relative to the directory you run the tools in).&lt;br /&gt;
&lt;br /&gt;
Here are some example invocations:&lt;br /&gt;
&lt;br /&gt;
Building a single package (e.g. nano):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake nano&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Building package sets (e.g. task-base):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake task-base&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Special note for&#039;&#039; &amp;lt;nowiki&amp;gt;task-base&amp;lt;/nowiki&amp;gt;: you may need additional setup for building this very one task. More details in [[ZaurusKernels]]&lt;br /&gt;
&lt;br /&gt;
Building a group of packages and deploying them into a rootfs image:&lt;br /&gt;
&lt;br /&gt;
GPE:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake x11-gpe-image&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
X11:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake x11-image&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OPIE:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake opie-image&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(&#039;&#039;&#039;NOTE:&#039;&#039;&#039; kergoth says it will take around 10GB of disk space to build an opie or gpe image for one architecture.&amp;lt;br&amp;gt;&lt;br /&gt;
sledge says: You can reduce it to ~4GB by [[Advanced_configuration|INHERIT += &amp;quot;rm_work&amp;quot;]])&lt;br /&gt;
&lt;br /&gt;
(&#039;&#039;&#039;NOTE:&#039;&#039;&#039; if you are using your custom kernel - set &amp;quot;Use the ARM EABI to compile the kernel (AEABI)&amp;quot; option in &amp;quot;Kernel Features&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
See the /stuff/openembedded/recipes/meta/ directory if you&#039;re curious about what meta/task and image targets exist.&lt;br /&gt;
&lt;br /&gt;
Building a single package, bypassing the long parse step (and therefore its dependencies--use with care):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ bitbake -b /stuff/openembedded/recipes/blah/blah.bb&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See [[Useful targets]] for a description of some of the more useful meta-packages. You will typically need at least one of the base images (&amp;lt;nowiki&amp;gt;bootstrap-image&amp;lt;/nowiki&amp;gt;, &amp;lt;nowiki&amp;gt;opie-image&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;gpe-image&amp;lt;/nowiki&amp;gt;), and if and only if you&#039;re building for an [http://wiki.openzaurus.org/Main_Page OpenZaurus] target requiring an installer image (such as C3000), an additional &amp;lt;nowiki&amp;gt;pivotboot-image&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Output of the build process (temporary files, log files and the binaries) all ends up in the &amp;lt;nowiki&amp;gt;tmp&amp;lt;/nowiki&amp;gt; directory.  Most interesting is probably the &amp;lt;nowiki&amp;gt;tmp/work/&amp;lt;/nowiki&amp;gt; directory.  Just have a look around the [[DirectoryStructure]].            &lt;br /&gt;
&lt;br /&gt;
Images generated by building package groups like &amp;lt;nowiki&amp;gt;opie-image&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;pivotboot-image&amp;lt;/nowiki&amp;gt; are placed in the &amp;lt;nowiki&amp;gt;tmp/deploy/images/&amp;lt;/nowiki&amp;gt; directory. Individual ipkg packages are put in &amp;lt;nowiki&amp;gt;tmp/deploy/ipk&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Adding Packages ==&lt;br /&gt;
# Create [[bbfile]].&lt;br /&gt;
# Try building it locally.&lt;br /&gt;
# Fix eventual problems.&lt;br /&gt;
# Send .[[bbfile]] or an [[OePatch]] to the [http://wiki.openembedded.net/index.php/Mailing_Lists openembedded-devel mailing list]. Please note that changes should comply with the [[Commit_Policy | commit policy]].&lt;br /&gt;
&lt;br /&gt;
= Problems =&lt;br /&gt;
Try to solve problems first by checking that you have done everything right, that nothing has changed from this description and that you have the latest code (see [[GitPhraseBook]]). Look also in the log file (referenced in any error message you will receive). If you still have problems, try checking [[PossibleFailures]] and [http://www.openembedded.org/wiki/OeFaq#builderrors common build errors].  &lt;br /&gt;
Above links are dead, you can try the [[:Category:FAQ]].  If problems persist, ask on [[IRC]] or in the [[Mailing lists|openembedded mailing list]].&lt;br /&gt;
&lt;br /&gt;
The Openembedded metadata is changing constantly.  This implies several things:&lt;br /&gt;
&lt;br /&gt;
# Once you have a &amp;quot;known good&amp;quot; version that works well on your system, keep it!  To update, clone a new copy; don&#039;t overwrite that working version until it&#039;s known to be safe.&lt;br /&gt;
# To resolve build problems, &amp;quot;git pull&amp;quot; is your good friend.  Many times, the issues will already be fixed in the current tree.&lt;br /&gt;
# Not all metadata updates cause the local caches to update correctly.  Sometimes you&#039;ll need to remove the &amp;quot;.../tmp&amp;quot; work directory and rebuild from scratch.&lt;br /&gt;
# Similar issues apply to the package sources you download.&lt;br /&gt;
&lt;br /&gt;
= Portability issues =&lt;br /&gt;
Make sure to set &amp;lt;nowiki&amp;gt;TARGET_OS&amp;lt;/nowiki&amp;gt; to something other than linux in local.conf if your host isn&#039;t linux.&lt;br /&gt;
&lt;br /&gt;
GNU extensions to tools are often required.  Symlink GNU patch, make, and cp (from fileutils), chmod, sed, find, tar, awk into your OE development path.&lt;br /&gt;
&lt;br /&gt;
FreeBSD 4 users: Perl 5.0 is too old.  A more recent perl must be available as &amp;lt;nowiki&amp;gt;/usr/bin/perl&amp;lt;/nowiki&amp;gt;.  Unfortunately just having more recent perl in the path isn&#039;t good enough.  Some scripts are hard-coded for &amp;lt;nowiki&amp;gt;/usr/bin/perl&amp;lt;/nowiki&amp;gt;.  You can test for which perl you&#039;re using by typing perl -v.  see /usr/ports/UPDATING for instructions on updating perl. Don&#039;t forget to do a use.perl port as instructed in /usr/ports/UPDATING&lt;br /&gt;
&lt;br /&gt;
FreeBSD users: Set &amp;lt;nowiki&amp;gt;BUILD_OS&amp;lt;/nowiki&amp;gt; in local.conf to freebsdN where N is your major version number.  At least the cross gcc wants this.&lt;br /&gt;
&lt;br /&gt;
FreeBSD users: The build process of glibc uses a very long command line at some places.  Increase ARG_MAX to at least 131072, by editing /usr/sys/sys/syslimits.h and recompile your kernel (and reboot).&lt;br /&gt;
&lt;br /&gt;
= Productivity notes =&lt;br /&gt;
Use the interactive bitbake mode (&amp;quot;bitbake -i&amp;quot;) to speed up work when debugging or developing .bb files. Remember to run &amp;quot;parse&amp;quot; at the prompt first. Go!&lt;br /&gt;
&lt;br /&gt;
If you want to save some compile time or are interested in additional tweaks to local.conf take a look at the [[Advanced configuration]] page.&lt;br /&gt;
&lt;br /&gt;
[[Category:User]]&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
	<entry>
		<id>https://www.openembedded.org/w/index.php?title=Fosdem_2010&amp;diff=2139</id>
		<title>Fosdem 2010</title>
		<link rel="alternate" type="text/html" href="https://www.openembedded.org/w/index.php?title=Fosdem_2010&amp;diff=2139"/>
		<updated>2010-01-17T10:41:17Z</updated>

		<summary type="html">&lt;p&gt;EFfeM: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Attending FOSDEM 2010?  Add your name to this page so that other developers can look out for you!&lt;br /&gt;
&lt;br /&gt;
* Phil Blundell&lt;br /&gt;
* Henning Heinold&lt;br /&gt;
* Marco Cavallini&lt;br /&gt;
* Frans Meulenbroeks (eFfeM)&lt;/div&gt;</summary>
		<author><name>EFfeM</name></author>
	</entry>
</feed>