<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://www.w3.org/1999/xhtml">
  <title xmlns="http://www.w3.org/2005/Atom">Dobrica Pavlinušić's random unstructured stuff: Pine64</title>
  <id xmlns="http://www.w3.org/2005/Atom">https://saturn.ffzg.hr/rot13/</id>
  <link xmlns="http://www.w3.org/2005/Atom" type="text/html" rel="alternate" href="https://saturn.ffzg.hr/rot13/index.cgi?pine64"/>
  <link xmlns="http://www.w3.org/2005/Atom" type="application/atom+xml" rel="self" href="https://saturn.ffzg.hr%2C%20saturn.ffzg.hr:443/feed/workspace/rot13?page=pine64;type=Atom"/>
  <updated xmlns="http://www.w3.org/2005/Atom">2019-01-17T17:41:56Z</updated>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://www.w3.org/1999/xhtml">
    <title xmlns="http://www.w3.org/2005/Atom">Pine64</title>
    <link xmlns="http://www.w3.org/2005/Atom" type="text/html" rel="alternate" href="https://saturn.ffzg.hr/rot13/index.cgi?pine64"/>
    <content xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://www.w3.org/1999/xhtml" type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml"><div>Creator: Dobrica Pavlinušić</div><hr/><div>Tags: arm</div><hr/><div class="wiki">
<span class="nlw_phrase"><a href="https://saturn.ffzg.hr/rot13/index.cgi/Pine64.txt?action=attachments_download;page_name=pine64;id=20171112123717-0-6095">Pine64.txt</a><!-- wiki: {file: Pine64.txt} --></span><br/><br/><div class="nlw_phrase"><table class="wafl_container">
  <tr>
    <td>
      <div class="wafl_box">
        
          <div class="wafl_titlebox">
            <div class="wafl_title">
              
                Contents: [Dobrica Pavlinušić's random unstructured stuff]
              
            </div>
          </div>
          <div class="wafl_items">
            
              <div class="wiki">
<ul>
<li><span class="nlw_phrase"><a title="section link" href="https://saturn.ffzg.hr/rot13/index.cgi?dobrica_pavlinu%C5%A1i%C4%87_s_random_unstructured_stuff#board_and_pinouts_info">Dobrica Pavlinušić's random unstructured stuff (board and pinouts info)</a><!-- wiki: {link: [Dobrica Pavlinušić's random unstructured stuff] board and pinouts info} --></span></li>
<li><span class="nlw_phrase"><a title="section link" href="https://saturn.ffzg.hr/rot13/index.cgi?dobrica_pavlinu%C5%A1i%C4%87_s_random_unstructured_stuff#armbian">Dobrica Pavlinušić's random unstructured stuff (armbian)</a><!-- wiki: {link: [Dobrica Pavlinušić's random unstructured stuff] armbian} --></span></li>
<li><span class="nlw_phrase"><a title="section link" href="https://saturn.ffzg.hr/rot13/index.cgi?dobrica_pavlinu%C5%A1i%C4%87_s_random_unstructured_stuff#links">Dobrica Pavlinušić's random unstructured stuff (Links)</a><!-- wiki: {link: [Dobrica Pavlinušić's random unstructured stuff] Links} --></span></li>
<li><span class="nlw_phrase"><a title="section link" href="https://saturn.ffzg.hr/rot13/index.cgi?dobrica_pavlinu%C5%A1i%C4%87_s_random_unstructured_stuff#u_boot">Dobrica Pavlinušić's random unstructured stuff (u-boot)</a><!-- wiki: {link: [Dobrica Pavlinušić's random unstructured stuff] u-=boot} --></span></li>
<li><span class="nlw_phrase"><a title="section link" href="https://saturn.ffzg.hr/rot13/index.cgi?dobrica_pavlinu%C5%A1i%C4%87_s_random_unstructured_stuff#kernel">Dobrica Pavlinušić's random unstructured stuff (kernel)</a><!-- wiki: {link: [Dobrica Pavlinušić's random unstructured stuff] kernel} --></span></li>

<ul>
<li><span class="nlw_phrase"><a title="section link" href="https://saturn.ffzg.hr/rot13/index.cgi?dobrica_pavlinu%C5%A1i%C4%87_s_random_unstructured_stuff#serial_ports">Dobrica Pavlinušić's random unstructured stuff (serial ports)</a><!-- wiki: {link: [Dobrica Pavlinušić's random unstructured stuff] serial ports} --></span></li>
</ul></ul>
</div>

            
            
          </div>
        
      </div>
    </td>
  </tr>
</table>
<!-- wiki: {toc: }
--></div><br/><br/><h1 id="board_and_pinouts_info">board and pinouts info</h1>
<ul>
<li><a target="_blank" title="(external link)" href="http://synfare.com/599N105E/hwdocs/pine64/index.html">http://synfare.com/599N105E/hwdocs/pine64/index.html</a></li>
</ul>
<h1 id="armbian">armbian</h1>
<p>
After upgrade to armbian-next , it doesn't boot. Stop u-boot with space and boot manually:</p>
<pre>
# try to boot only from mmc
=&gt; setenv bootcmd run mmc_boot
=&gt; saveenv
Saving Environment to MMC...
Writing to MMC(0)... done

=&gt; run mmc_boot
# this will fail, but will set some enviroment variables needed

=&gt; setenv devtype mmc
=&gt; setenv prefix /boot/
=&gt; load ${devtype} 0 ${ramdisk_addr_r} ${prefix}uInitrd
4293052 bytes read in 676 ms (6.1 MiB/s)

=&gt; load ${devtype} 0 ${kernel_addr_r} ${prefix}Image 
12957704 bytes read in 1386 ms (8.9 MiB/s)

=&gt; load ${devtype} 0 ${fdt_addr_r} ${prefix}dtb/${fdtfile}
14505 bytes read in 397 ms (35.2 KiB/s)

=&gt; booti ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}

# fix load addresses in /boot/boot.cmd
=&gt; setenv fdt_addr ${fdt_addr_r}
=&gt; setenv kernel_addr ${kernel_addr_r}
=&gt; setenv ramdisk_addr ${ramdisk_addr_r}    
=&gt; saveenv


</pre>
<br/><p>
fixed: <span class="nlw_phrase"><a href="https://saturn.ffzg.hr/rot13/index.cgi/boot.cmd?action=attachments_download;page_name=pine64;id=20171120170400-0-7823">boot.cmd</a><!-- wiki: {file: boot.cmd} --></span></p>
<h1 id="links">Links</h1>
<p>
<a target="_blank" title="(external link)" href="http://wiki.pine64.org/index.php/Main_Page">http://wiki.pine64.org/index.php/Main_Page</a></p>
<p>
<a target="_blank" title="(external link)" href="http://linux-sunxi.org/Pine64">http://linux-sunxi.org/Pine64</a></p>
<p>
<a target="_blank" title="(external link)" href="https://github.com/apritzel/pine64">https://github.com/apritzel/pine64</a></p>
<p>
Debian rootfs: <a target="_blank" title="(external link)" href="https://github.com/umiddelb/z2d/tree/master/pine64">https://github.com/umiddelb/z2d/tree/master/pine64</a></p>
<h1 id="u_boot">u-boot</h1>
<p>
<a target="_blank" title="(external link)" href="https://github.com/longsleep/build-pine64-image">https://github.com/longsleep/build-pine64-image</a></p>
<p>
<a target="_blank" title="(external link)" href="http://forum.pine64.org/showthread.php?tid=99">http://forum.pine64.org/showthread.php?tid=99</a></p>
<p>
<a target="_blank" title="(external link)" href="https://www.stdin.xyz/downloads/people/longsleep/pine64-images/">https://www.stdin.xyz/downloads/people/longsleep/pine64-images/</a></p>
<h1 id="kernel">kernel</h1>
<p>
<a target="_blank" title="(external link)" href="http://forum.pine64.org/showthread.php?tid=293">http://forum.pine64.org/showthread.php?tid=293</a></p>
<h2 id="serial_ports">serial ports</h2>
<ul>
<li><a target="_blank" title="(external link)" href="https://github.com/longsleep/build-pine64-image/pull/11">https://github.com/longsleep/build-pine64-image/pull/11</a></li>
</ul>
<ul>
<li>update image: <a target="_blank" title="(external link)" href="http://forum.pine64.org/showthread.php?tid=99">http://forum.pine64.org/showthread.php?tid=99</a></li>
</ul>
<ul>
<li>from <a target="_blank" title="(external link)" href="http://linux-sunxi.org/Pine64#Serial_port_.2F_UART">http://linux-sunxi.org/Pine64#Serial_port_.2F_UART</a></li>
</ul>
<span class="nlw_phrase"><img alt="800px-Pine64_UART0.jpg" src="https://saturn.ffzg.hr/rot13/index.cgi/800px-Pine64_UART0.jpg?action=attachments_download;page_name=pine64;id=20171112103607-0-23169"/><!-- wiki: {image: 800px-=Pine64_UART0.jpg} --></span><br/></div>
<hr/><div>Attachments: 800px-Pine64_UART0.jpg, boot.cmd, Pine64.txt</div></div>
    </content>
    <id xmlns="http://www.w3.org/2005/Atom">https://saturn.ffzg.hr/rot13/index.cgi?pine64</id>
    <author xmlns="http://www.w3.org/2005/Atom">
      <name xmlns="http://www.w3.org/2005/Atom">Dobrica Pavlinušić</name>
    </author>
    <updated xmlns="http://www.w3.org/2005/Atom">2019-01-17T17:41:56Z</updated>
    <category xmlns="http://www.w3.org/2005/Atom" term="arm" label="arm"/>
  </entry>
</feed>
