<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.yoctoproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Juan+Ramos</id>
	<title>Yocto Project - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.yoctoproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Juan+Ramos"/>
	<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/Special:Contributions/Juan_Ramos"/>
	<updated>2026-05-04T20:20:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.5</generator>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_QEMU_UNFS_test_procedure&amp;diff=26520</id>
		<title>Yocto QEMU UNFS test procedure</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_QEMU_UNFS_test_procedure&amp;diff=26520"/>
		<updated>2017-05-02T22:10:46Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: /* Steps to run the NFS test case for all qemu machines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Yocto QEMU UNFS test case procedure}}&lt;br /&gt;
&lt;br /&gt;
==Steps to run the NFS test case for all qemu machines==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;[[Prerequisites:]]&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Have a clone of poky &lt;br /&gt;
&amp;lt;pre&amp;gt;$ git clone git://git.yoctoproject.org/poky&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Checkout the correct hash.&lt;br /&gt;
&amp;lt;pre&amp;gt;$ git checkout    and/or   $ git log&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. Download the &amp;quot;kernel&amp;quot; file (&amp;lt;ZIMAGE&amp;gt;.bin) and the image compressed file (&amp;lt;IMAGE NAME&amp;gt;.tar.bz2) from autobilder link.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;[[Steps:]]&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Open a terminal and place in poky/ directory.&lt;br /&gt;
&amp;lt;pre&amp;gt;$ cd $PATH/poky&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Source the environment:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ source oe-init-build-env build&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ MACHINE=&amp;lt;MACHINE_TESTED&amp;gt; on conf/local.conf &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. Place the downloaded kernel (&amp;lt;ZIMAGE&amp;gt;.bin) and the &amp;lt;IMAGE NAME&amp;gt;.tar.bz2 file after &amp;quot;build&amp;quot; directory, something like &amp;quot;/home/&amp;lt;YOURUSER&amp;gt;/poky/build/tmp/deploy/images/qemu&amp;lt;MACHINE&amp;gt;/&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 1:&#039;&#039;&#039; First you need to create manually those directories in your system.&lt;br /&gt;
a) In poky directory create tmp directory (&amp;lt;code&amp;gt;~/poky/build$ mkdir tmp&amp;lt;/code&amp;gt;); b) Then access to tpm (&amp;lt;code&amp;gt;$ cd tmp &amp;lt;/code&amp;gt;); c) Create deploy directory (&amp;lt;code&amp;gt;$ mkdir deploy &amp;lt;/code&amp;gt;); d) Access to deploy directory (&amp;lt;code&amp;gt;$ cd deploy &amp;lt;/code&amp;gt;); e) Create images directory (&amp;lt;code&amp;gt;$ mkdir images &amp;lt;/code&amp;gt;); f) Access to images directory (&amp;lt;code&amp;gt; $ cd images &amp;lt;/code&amp;gt;); g) create your qemu folder, for example if you are testing qemux86 (&amp;lt;code&amp;gt;$ mkdir qemux86&amp;lt;/code&amp;gt; ); h) Access  your qemu folder, for instance to qemux86 directory (&amp;lt;code&amp;gt; $ cd qemux86 &amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 2:&#039;&#039;&#039; you can avoid to download and copy here the files and directly download in this path, typing in this path the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ wget /&amp;lt;WEB_ADRESS_OF_THE_KERNEL_IMAGE&amp;gt;/&amp;lt;ZIMAGE&amp;gt;.bin&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ wget /&amp;lt;WEB_ADRESS_OF_THE_IMAGE&amp;gt;/&amp;lt;IMAGE NAME&amp;gt;.tar.bz2 &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5. Go to build directory:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ cd /home/&amp;lt;YOURUSER&amp;gt;/poky/build&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
6. Extract the SDK, typing in a terminal the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ runqemu-extract-sdk tmp/deploy/images/qemux&amp;lt;MACHINE&amp;gt;/&amp;lt;IMAGE NAME&amp;gt;.tar.bz2 rootfs&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 3:&#039;&#039;&#039; &amp;quot;rootfs&amp;quot; is referring to a directory going to be created, you can choose any name as you want.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 4:&#039;&#039;&#039; is it possible that the system will ask you to bitbake the system first. If so, then type in the terminal &amp;lt;code&amp;gt;$ bitbake meta-ide-support&amp;lt;/code&amp;gt; (This process would take a while). Then type again in a terminal: &amp;lt;code&amp;gt;$ runqemu-extract-sdk tpm/deploy/images/qemux&amp;lt;MACHINE&amp;gt;/&amp;lt;IMAGE NAME&amp;gt;.tar.bz2 rootfs &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
7. Start the qemu machine with NFS:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ runqemu nfs tmp/deploy/images/qemux&amp;lt;MACHINE&amp;gt;/&amp;lt;ZIMAGE&amp;gt;.bin rootfs&amp;lt;/pre&amp;gt;&lt;br /&gt;
qemu machine should be launch after this command.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 5:&#039;&#039;&#039;if you get the error:&lt;br /&gt;
================================================================================================================&lt;br /&gt;
Error: neither rpcbind nor portmap appear to be running&lt;br /&gt;
Please install and start one of these services first&lt;br /&gt;
================================================================================================================&lt;br /&gt;
 for recent Ubuntu hosts, run:&lt;br /&gt;
  sudo apt-get install rpcbind&lt;br /&gt;
Then add OPTIONS=&amp;quot;-i -w&amp;quot;  to /etc/default/rpcbind and run&lt;br /&gt;
  sudo service portmap restart&lt;br /&gt;
and run again step 7.&lt;br /&gt;
&lt;br /&gt;
8. Finally, from qemu open a terminal and type &lt;br /&gt;
&amp;lt;pre&amp;gt;$ poweroff&amp;lt;/pre&amp;gt;&lt;br /&gt;
to exit.&lt;br /&gt;
&lt;br /&gt;
Contributing to any of the yoctoproject.org repositories, including qa-tools, can be achieved with the [[Poky Contributions]] guidelines.&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Firmware_upgrade_on_Minnowmax_with_Dediprog_600&amp;diff=21779</id>
		<title>Firmware upgrade on Minnowmax with Dediprog 600</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Firmware_upgrade_on_Minnowmax_with_Dediprog_600&amp;diff=21779"/>
		<updated>2016-11-30T22:31:48Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: Created page with &amp;quot;This tutorial explains how to upgrade firmware in a Minnowmax with Dediprog 600.   You must have a Dediprog 600 with the USB cable interface needed to establish communication ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial explains how to upgrade firmware in a Minnowmax with Dediprog 600.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You must have a Dediprog 600 with the USB cable interface needed to establish communication between platform and PC.&lt;br /&gt;
&lt;br /&gt;
                                                      [[File:Dediprog.jpg|center|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The connection to the platform is via the 8 pin connector cable inserted right here:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                      [[File:Minnow00.jpg|center|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note the red line in the cable, this is the right way to connect the cable, oriented with the pin 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                      [[File:Minnow01.jpg|center|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You need to download the Dediprog 600 engineering software and drivers from: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.dediprog.com/pd/spi-flash-solution/sf600&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To install the software just need to go through the process:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                   [[File:00.jpg|center]]                  &lt;br /&gt;
&lt;br /&gt;
                   [[File:01.jpg|center|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now, for the driver installation, you need to download and unzip the files in a folder, go to Control Panel &amp;gt; Device manager and look for the unrecognized device (SF600-ISP):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                       [[File:03.jpg|center|700px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Right clic and update driver, set the path where you unzip the driver files and ok.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                  [[File:04.jpg|center|700px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now get the latest BIOS file .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open the Dediprog application, if everything was well configured a screen like this will open:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                               [[File:06.jpg|center|500px]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Choose OK and a screen like this will open:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
                        [[File:07.jpg|center|700px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From this screen select the button named &amp;quot;File&amp;quot; it will open a Open File window to find the BIOS file:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                        [[File:08.jpg|center|700px]]&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
And the next step is to press the &amp;quot;Batch&amp;quot; Button&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                        [[File:09.jpg|center|700px]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When the process finish, you will see a message like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                           &lt;br /&gt;
                  [[File:10.jpg|center|700px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--[[User:Juan Ramos|Juan Ramos]] ([[User talk:Juan Ramos|talk]]) 14:31, 30 November 2016 (PST)&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:10.jpg&amp;diff=21778</id>
		<title>File:10.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:10.jpg&amp;diff=21778"/>
		<updated>2016-11-30T22:05:43Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:09.jpg&amp;diff=21777</id>
		<title>File:09.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:09.jpg&amp;diff=21777"/>
		<updated>2016-11-30T22:04:55Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:08.jpg&amp;diff=21776</id>
		<title>File:08.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:08.jpg&amp;diff=21776"/>
		<updated>2016-11-30T22:03:32Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:07.jpg&amp;diff=21775</id>
		<title>File:07.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:07.jpg&amp;diff=21775"/>
		<updated>2016-11-30T22:02:17Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:06.jpg&amp;diff=21774</id>
		<title>File:06.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:06.jpg&amp;diff=21774"/>
		<updated>2016-11-30T22:01:19Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:04.jpg&amp;diff=21773</id>
		<title>File:04.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:04.jpg&amp;diff=21773"/>
		<updated>2016-11-30T21:50:51Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:03.jpg&amp;diff=21772</id>
		<title>File:03.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:03.jpg&amp;diff=21772"/>
		<updated>2016-11-30T21:48:37Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:01.jpg&amp;diff=21771</id>
		<title>File:01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:01.jpg&amp;diff=21771"/>
		<updated>2016-11-30T21:47:37Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:00.jpg&amp;diff=21770</id>
		<title>File:00.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:00.jpg&amp;diff=21770"/>
		<updated>2016-11-30T21:47:00Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Minnow01.jpg&amp;diff=21769</id>
		<title>File:Minnow01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Minnow01.jpg&amp;diff=21769"/>
		<updated>2016-11-30T20:01:37Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Minnow00.jpg&amp;diff=21768</id>
		<title>File:Minnow00.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Minnow00.jpg&amp;diff=21768"/>
		<updated>2016-11-30T19:57:12Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Dediprog.jpg&amp;diff=21767</id>
		<title>File:Dediprog.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Dediprog.jpg&amp;diff=21767"/>
		<updated>2016-11-30T19:54:23Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: Juan Ramos uploaded a new version of &amp;amp;quot;File:Dediprog.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Dediprog.jpg&amp;diff=21766</id>
		<title>File:Dediprog.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Dediprog.jpg&amp;diff=21766"/>
		<updated>2016-11-30T19:51:45Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=MinnowMax_board_Serial_video_connection_guide&amp;diff=21050</id>
		<title>MinnowMax board Serial video connection guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=MinnowMax_board_Serial_video_connection_guide&amp;diff=21050"/>
		<updated>2016-10-31T18:03:35Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: /* To start screen for MinnnowBoard Max serial communication purposes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&#039;&#039;&#039;Two-Way Serial Communication with MinnnowBoard Max in Linux&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to set up two-way serial communication between a MinnnowBoard Max and&lt;br /&gt;
a host computer running a Linux operating system. These instructions are based upon Ubuntu Linux&lt;br /&gt;
and the serial terminal application ‘screen’, but other Linux environments and serial terminal&lt;br /&gt;
applications with comparable functionality are also available to perform the same tasks.&lt;br /&gt;
&lt;br /&gt;
== Connection between Host and Target ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Minnowmax serial connection.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Serial Cable to USB ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. You must have the appropriate USB 6 pin header cable to connect to the MinnowBoard Max. This&lt;br /&gt;
is a USB to 3.3V TTL Header. You can purchase on the web by searching for the following part&lt;br /&gt;
number: SS-TTL3VT . The cost is approximately $20 USD.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MMax Serial cable.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To install screen ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. With root user permissions run the Advanced Packaging Tool to download and install the screen by&lt;br /&gt;
running the following command from a terminal:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;sudo apt-get install screen&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Install screen.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. The 6 pin header on the MinnowBoard Max serves as the serial port output:&lt;br /&gt;
&lt;br /&gt;
• &#039;&#039;&#039;Connect the other end (USB Type A ) to the USB port of your computer.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Conection mmax.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
• &#039;&#039;&#039;Note: Pin 1 of the Header is closest to the SATA connector. Pin 1 of the SS-TTL3VT cable is the Black lead wire.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Connection pin.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you are running Linux in a virtual machine be sure that the virtual machine USB connection&lt;br /&gt;
is active.&lt;br /&gt;
&lt;br /&gt;
Run the dmseg command from a terminal to determine which tty is created (typically&lt;br /&gt;
ttyUSB0).&lt;br /&gt;
&lt;br /&gt;
Look for the FT230x Basic UART.&lt;br /&gt;
&lt;br /&gt;
Find the line that says &#039;&#039;&#039;FTDI USB Serial Device Converter now attached to ttyUSBX&#039;&#039;&#039;,&lt;br /&gt;
where X is the assigned number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Dmesg.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;To start screen for MinnnowBoard Max serial communication purposes&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Make sure to have root user permission and execute the command:&lt;br /&gt;
screen /dev/ttyUSBX 115200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Replace the X of USBX with the actual assigned tty number found during the previous step.&lt;br /&gt;
The 115200 indicates the baud rate for the serial data transfer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Video serial.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--[[User:Juan Ramos|Juan Ramos]] ([[User talk:Juan Ramos|talk]]) 11:03, 31 October 2016 (PDT)&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=MinnowMax_board_Serial_video_connection_guide&amp;diff=21049</id>
		<title>MinnowMax board Serial video connection guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=MinnowMax_board_Serial_video_connection_guide&amp;diff=21049"/>
		<updated>2016-10-31T18:02:21Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: /* https://wiki.yoctoproject.org/wiki/skins/common/images/button_bold.pngTwo-Way Serial Communication with MinnnowBoard Max in Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&#039;&#039;&#039;Two-Way Serial Communication with MinnnowBoard Max in Linux&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to set up two-way serial communication between a MinnnowBoard Max and&lt;br /&gt;
a host computer running a Linux operating system. These instructions are based upon Ubuntu Linux&lt;br /&gt;
and the serial terminal application ‘screen’, but other Linux environments and serial terminal&lt;br /&gt;
applications with comparable functionality are also available to perform the same tasks.&lt;br /&gt;
&lt;br /&gt;
== Connection between Host and Target ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Minnowmax serial connection.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Serial Cable to USB ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. You must have the appropriate USB 6 pin header cable to connect to the MinnowBoard Max. This&lt;br /&gt;
is a USB to 3.3V TTL Header. You can purchase on the web by searching for the following part&lt;br /&gt;
number: SS-TTL3VT . The cost is approximately $20 USD.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MMax Serial cable.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To install screen ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. With root user permissions run the Advanced Packaging Tool to download and install the screen by&lt;br /&gt;
running the following command from a terminal:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;sudo apt-get install screen&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Install screen.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. The 6 pin header on the MinnowBoard Max serves as the serial port output:&lt;br /&gt;
&lt;br /&gt;
• &#039;&#039;&#039;Connect the other end (USB Type A ) to the USB port of your computer.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Conection mmax.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
• &#039;&#039;&#039;Note: Pin 1 of the Header is closest to the SATA connector. Pin 1 of the SS-TTL3VT cable is the Black lead wire.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Connection pin.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you are running Linux in a virtual machine be sure that the virtual machine USB connection&lt;br /&gt;
is active.&lt;br /&gt;
&lt;br /&gt;
Run the dmseg command from a terminal to determine which tty is created (typically&lt;br /&gt;
ttyUSB0).&lt;br /&gt;
&lt;br /&gt;
Look for the FT230x Basic UART.&lt;br /&gt;
&lt;br /&gt;
Find the line that says &#039;&#039;&#039;FTDI USB Serial Device Converter now attached to ttyUSBX&#039;&#039;&#039;,&lt;br /&gt;
where X is the assigned number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Dmesg.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;To start screen for MinnnowBoard Max serial communication purposes&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Make sure to have root user permission and execute the command:&lt;br /&gt;
screen /dev/ttyUSBX 115200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Replace the X of USBX with the actual assigned tty number found during the previous step.&lt;br /&gt;
The 115200 indicates the baud rate for the serial data transfer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Video serial.jpg]]&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=MinnowMax_board_Serial_video_connection_guide&amp;diff=21048</id>
		<title>MinnowMax board Serial video connection guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=MinnowMax_board_Serial_video_connection_guide&amp;diff=21048"/>
		<updated>2016-10-31T18:01:14Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: Created page with &amp;quot;==https://wiki.yoctoproject.org/wiki/skins/common/images/button_bold.png&amp;#039;&amp;#039;&amp;#039;Two-Way Serial Communication with MinnnowBoard Max in Linux&amp;#039;&amp;#039;&amp;#039;==     This tutorial explains how to s...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==https://wiki.yoctoproject.org/wiki/skins/common/images/button_bold.png&#039;&#039;&#039;Two-Way Serial Communication with MinnnowBoard Max in Linux&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to set up two-way serial communication between a MinnnowBoard Max and&lt;br /&gt;
a host computer running a Linux operating system. These instructions are based upon Ubuntu Linux&lt;br /&gt;
and the serial terminal application ‘screen’, but other Linux environments and serial terminal&lt;br /&gt;
applications with comparable functionality are also available to perform the same tasks.&lt;br /&gt;
&lt;br /&gt;
== Connection between Host and Target ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Minnowmax serial connection.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Serial Cable to USB ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. You must have the appropriate USB 6 pin header cable to connect to the MinnowBoard Max. This&lt;br /&gt;
is a USB to 3.3V TTL Header. You can purchase on the web by searching for the following part&lt;br /&gt;
number: SS-TTL3VT . The cost is approximately $20 USD.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MMax Serial cable.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To install screen ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. With root user permissions run the Advanced Packaging Tool to download and install the screen by&lt;br /&gt;
running the following command from a terminal:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;sudo apt-get install screen&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Install screen.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. The 6 pin header on the MinnowBoard Max serves as the serial port output:&lt;br /&gt;
&lt;br /&gt;
• &#039;&#039;&#039;Connect the other end (USB Type A ) to the USB port of your computer.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Conection mmax.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
• &#039;&#039;&#039;Note: Pin 1 of the Header is closest to the SATA connector. Pin 1 of the SS-TTL3VT cable is the Black lead wire.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Connection pin.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you are running Linux in a virtual machine be sure that the virtual machine USB connection&lt;br /&gt;
is active.&lt;br /&gt;
&lt;br /&gt;
Run the dmseg command from a terminal to determine which tty is created (typically&lt;br /&gt;
ttyUSB0).&lt;br /&gt;
&lt;br /&gt;
Look for the FT230x Basic UART.&lt;br /&gt;
&lt;br /&gt;
Find the line that says &#039;&#039;&#039;FTDI USB Serial Device Converter now attached to ttyUSBX&#039;&#039;&#039;,&lt;br /&gt;
where X is the assigned number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Dmesg.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;To start screen for MinnnowBoard Max serial communication purposes&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Make sure to have root user permission and execute the command:&lt;br /&gt;
screen /dev/ttyUSBX 115200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Replace the X of USBX with the actual assigned tty number found during the previous step.&lt;br /&gt;
The 115200 indicates the baud rate for the serial data transfer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Video serial.jpg]]&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Video_serial.jpg&amp;diff=21047</id>
		<title>File:Video serial.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Video_serial.jpg&amp;diff=21047"/>
		<updated>2016-10-31T17:37:07Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Dmesg.jpg&amp;diff=21046</id>
		<title>File:Dmesg.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Dmesg.jpg&amp;diff=21046"/>
		<updated>2016-10-31T17:35:46Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Connection_pin.jpg&amp;diff=21045</id>
		<title>File:Connection pin.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Connection_pin.jpg&amp;diff=21045"/>
		<updated>2016-10-31T17:31:19Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Conection_mmax.jpg&amp;diff=21044</id>
		<title>File:Conection mmax.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Conection_mmax.jpg&amp;diff=21044"/>
		<updated>2016-10-31T17:26:16Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Install_screen.jpg&amp;diff=21043</id>
		<title>File:Install screen.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Install_screen.jpg&amp;diff=21043"/>
		<updated>2016-10-31T17:25:23Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:MMax_Serial_cable.jpg&amp;diff=21042</id>
		<title>File:MMax Serial cable.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:MMax_Serial_cable.jpg&amp;diff=21042"/>
		<updated>2016-10-31T17:18:09Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=File:Minnowmax_serial_connection.jpg&amp;diff=21041</id>
		<title>File:Minnowmax serial connection.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=File:Minnowmax_serial_connection.jpg&amp;diff=21041"/>
		<updated>2016-10-31T17:16:00Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_QEMU_UNFS_test_procedure&amp;diff=20897</id>
		<title>Yocto QEMU UNFS test procedure</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Yocto_QEMU_UNFS_test_procedure&amp;diff=20897"/>
		<updated>2016-10-21T18:55:58Z</updated>

		<summary type="html">&lt;p&gt;Juan Ramos: /* Steps to run the NFS test case for all qemu machines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Yocto QEMU UNFS test case procedure}}&lt;br /&gt;
&lt;br /&gt;
==Steps to run the NFS test case for all qemu machines==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;[[Prerequisites:]]&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Have a clone of poky &lt;br /&gt;
&amp;lt;pre&amp;gt;$ git clone git://git.yoctoproject.org/poky&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Checkout the correct hash.&lt;br /&gt;
&amp;lt;pre&amp;gt;$ git checkout    and/or   $ git log&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. Download the &amp;quot;kernel&amp;quot; file (&amp;lt;ZIMAGE&amp;gt;.bin) and the image compressed file (&amp;lt;IMAGE NAME&amp;gt;.tar.bz2) from autobilder link.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;[[Steps:]]&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Open a terminal and place in poky/ directory.&lt;br /&gt;
&amp;lt;pre&amp;gt;$ cd $PATH/poky&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Source the environment:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ source oe-init-build-env build&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ MACHINE=&amp;lt;MACHINE_TESTED&amp;gt; on conf/local.conf &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. Place the downloaded kernel (&amp;lt;ZIMAGE&amp;gt;.bin) and the &amp;lt;IMAGE NAME&amp;gt;.tar.bz2 file after &amp;quot;build&amp;quot; directory, something like &amp;quot;/home/&amp;lt;YOURUSER&amp;gt;/poky/build/tmp/deploy/images/qemu&amp;lt;MACHINE&amp;gt;/&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 1:&#039;&#039;&#039; First you need to create manually those directories in your system.&lt;br /&gt;
a) In poky directory create tmp directory (&amp;lt;code&amp;gt;~/poky/build$ mkdir tmp&amp;lt;/code&amp;gt;); b) Then access to tpm (&amp;lt;code&amp;gt;$ cd tmp &amp;lt;/code&amp;gt;); c) Create deploy directory (&amp;lt;code&amp;gt;$ mkdir deploy &amp;lt;/code&amp;gt;); d) Access to deploy directory (&amp;lt;code&amp;gt;$ cd deploy &amp;lt;/code&amp;gt;); e) Create images directory (&amp;lt;code&amp;gt;$ mkdir images &amp;lt;/code&amp;gt;); f) Access to images directory (&amp;lt;code&amp;gt; $ cd images &amp;lt;/code&amp;gt;); g) create your qemu folder, for example if you are testing qemux86 (&amp;lt;code&amp;gt;$ mkdir qemux86&amp;lt;/code&amp;gt; ); h) Access  your qemu folder, for instance to qemux86 directory (&amp;lt;code&amp;gt; $ cd qemux86 &amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 2:&#039;&#039;&#039; you can avoid to download and copy here the files and directly download in this path, typing in this path the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ wget /&amp;lt;WEB_ADRESS_OF_THE_KERNEL_IMAGE&amp;gt;/&amp;lt;ZIMAGE&amp;gt;.bin&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ wget /&amp;lt;WEB_ADRESS_OF_THE_IMAGE&amp;gt;/&amp;lt;IMAGE NAME&amp;gt;.tar.bz2 &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5. Go to build directory:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ cd /home/&amp;lt;YOURUSER&amp;gt;/poky/build&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
6. Extract the SDK, typing in a terminal the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ runqemu-extract-sdk tpm/deploy/images/qemux&amp;lt;MACHINE&amp;gt;/&amp;lt;IMAGE NAME&amp;gt;.tar.bz2 rootfs&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 3:&#039;&#039;&#039; &amp;quot;rootfs&amp;quot; is referring to a directory going to be created, you can choose any name as you want.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 4:&#039;&#039;&#039; is it possible that the system will ask you to bitbake the system first. If so, then type in the terminal &amp;lt;code&amp;gt;$ bitbake meta-ide-support&amp;lt;/code&amp;gt; (This process would take a while). Then type again in a terminal: &amp;lt;code&amp;gt;$ runqemu-extract-sdk tpm/deploy/images/qemux&amp;lt;MACHINE&amp;gt;/&amp;lt;IMAGE NAME&amp;gt;.tar.bz2 rootfs &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
7. Start the qemu machine with NFS:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ runqemu nfs tmp/deploy/images/qemux&amp;lt;MACHINE&amp;gt;/&amp;lt;ZIMAGE&amp;gt;.bin rootfs&amp;lt;/pre&amp;gt;&lt;br /&gt;
qemu machine should be launch after this command.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note 5:&#039;&#039;&#039;if you get the error:&lt;br /&gt;
================================================================================================================&lt;br /&gt;
Error: neither rpcbind nor portmap appear to be running&lt;br /&gt;
Please install and start one of these services first&lt;br /&gt;
================================================================================================================&lt;br /&gt;
 for recent Ubuntu hosts, run:&lt;br /&gt;
  sudo apt-get install rpcbind&lt;br /&gt;
Then add OPTIONS=&amp;quot;-i -w&amp;quot;  to /etc/default/rpcbind and run&lt;br /&gt;
  sudo service portmap restart&lt;br /&gt;
and run again step 7.&lt;br /&gt;
&lt;br /&gt;
8. Finally, from qemu open a terminal and type &lt;br /&gt;
&amp;lt;pre&amp;gt;$ poweroff&amp;lt;/pre&amp;gt;&lt;br /&gt;
to exit.&lt;br /&gt;
&lt;br /&gt;
Contributing to any of the yoctoproject.org repositories, including qa-tools, can be achieved with the [[Poky Contributions]] guidelines.&lt;/div&gt;</summary>
		<author><name>Juan Ramos</name></author>
	</entry>
</feed>