Difference between revisions of "Linux"

From ESS-WIKI
Jump to: navigation, search
 
(4 intermediate revisions by the same user not shown)
Line 29: Line 29:
 
</p>
 
</p>
 
<h2> <span style="color:#0070c0">Building rk-debian rootfs</span> </h2>
 
<h2> <span style="color:#0070c0">Building rk-debian rootfs</span> </h2>
<p><pre class="fck_mw_syntaxhighlight">
+
<p><pre class="fck_mw_syntaxhighlight">&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;
 
$ ARCH=armhf ./mk-rootfs.sh  
 
$ ARCH=armhf ./mk-rootfs.sh  
or
 
 
$ VERSION=debug ARCH=armhf ./mk-rootfs-stretch.sh
 
$ VERSION=debug ARCH=armhf ./mk-rootfs-stretch.sh
<syntaxhighlight></pre>
+
&amp;lt;/syntaxhighlight&amp;gt;</pre>
 
</p>
 
</p>
 
<h2> <span style="color:#0070c0">Creating the ext4 image</span> </h2>
 
<h2> <span style="color:#0070c0">Creating the ext4 image</span> </h2>
Line 44: Line 43:
 
$ cd ..
 
$ cd ..
 
$ ./mkfirmware.sh debian
 
$ ./mkfirmware.sh debian
</pre>
+
&amp;lt;/syntaxhighlight&amp;gt;</pre>
 
</p>
 
</p>

Latest revision as of 15:38, 13 June 2018

Getting Linux Source Code

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ git clone https://github.com/rockchip-linux/repo.git
$ mkdir rk3399_linux
$ cd rk3399_linux/
$ ../repo/repo init --repo-url=https://github.com/rockchip-linux/repo -u https://github.com/rockchip-linux/manifests -m rk3399_linux_release.xml
$ ../repo/repo sync
&lt;/syntaxhighlight&gt;

Compiler u-boot

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ ./make.sh evb-rk3399
&lt;/syntaxhighlight&gt;

Compiler Kernel

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ cd kernel
$ make ARCH=arm64 rockchip_linux_defconfig
$ make ARCH=arm64 rk3399-ds100.img -j12
&lt;/syntaxhighlight&gt;

Building base debian system by ubuntu-build-service from linaro

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ sudo apt-get install binfmt-support qemu-user-static live-build
$ sudo dpkg -i ubuntu-build-service/packages/*
$ sudo apt-get install -f
$ ARCH=armhf ./mk-base-debian.sh
&lt;/syntaxhighlight&gt;

Building rk-debian rootfs

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ ARCH=armhf ./mk-rootfs.sh 
$ VERSION=debug ARCH=armhf ./mk-rootfs-stretch.sh
&lt;/syntaxhighlight&gt;

Creating the ext4 image

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ ./mk-image.sh
&lt;/syntaxhighlight&gt;

Creating the all image

&lt;syntaxhighlight lang=&quot;bash&quot;&gt;
$ cd ..
$ ./mkfirmware.sh debian
&lt;/syntaxhighlight&gt;