Difference between revisions of "Distribution"

From Rockchip open source Document
Jump to: navigation, search
Line 1: Line 1:
 +
 +
The release rootfs image is based on linaro-alip-jessie.If you want to use other distributions, you need to compile and install components we provide.Do not install the deb under rk-rootfs-build directly.
 +
 +
We currently provide several components, the guide below only help you make xserver work.<br/> For more details Please refer to each package's wiki.
  
 
There are also many other districbutions support by community or developers.
 
There are also many other districbutions support by community or developers.
Line 13: Line 17:
  
 
[https://www.google.com/url?q=https://github.com/archlinuxarm/PKGBUILDs/tree/master/core/linux-gru&sa=D&sntz=1&usg=AFQjCNE-M4mxRkDn10G8xLOVN02TsJJKag https://github.com/archlinuxarm/PKGBUILDs/tree/master/core/linux-gru]
 
[https://www.google.com/url?q=https://github.com/archlinuxarm/PKGBUILDs/tree/master/core/linux-gru&sa=D&sntz=1&usg=AFQjCNE-M4mxRkDn10G8xLOVN02TsJJKag https://github.com/archlinuxarm/PKGBUILDs/tree/master/core/linux-gru]
 +
 +
&nbsp;
 +
 +
= Ubuntu 16.04 =
 +
 +
download and extract ubuntu-xenial
 +
<pre><code>wget [http://cdimage.ubuntu.com/ubuntu-base/releases/16.04/release/ubuntu-base-16.04-core-armhf.tar.gz http://cdimage.ubuntu.com/ubuntu-base/releases/16.04/release/ubuntu-base-16.04-core-armhf.tar.gz]
 +
sudo tar -xpf ubuntu-base-16.04-core-armhf.tar.gz</code>
 +
</pre>
 +
 +
copy qemu
 +
<pre><code>sudo apt-get install qemu-user-static
 +
sudo cp /usr/bin/qemu-arm-static usr/bin/</code>
 +
</pre>
 +
 +
copy host's dns to rootfs
 +
<pre><code>sudo cp -b /etc/resolv.conf  etc/resolv.conf</code>
 +
</pre>
 +
 +
add the following repository to etc/apt/source.list(for compiling xserver)
 +
<pre><code>deb [http://ports.ubuntu.com/ubuntu-ports/ http://ports.ubuntu.com/ubuntu-ports/] xenial main universe
 +
deb-src [http://ports.ubuntu.com/ubuntu-ports/ http://ports.ubuntu.com/ubuntu-ports/] xenial main universe</code>
 +
</pre>
 +
 +
chroot to target rootfs<br/> [https://github.com/wzyy2/Scripts/blob/master/ch-mount.sh ch-mount.sh]
 +
<pre><code>ch-mount.sh -m ubuntu/</code>
 +
</pre>
 +
 +
install desktop
 +
<pre><code>apt-get install lightdm vim git
 +
apt-get build-dep xserver-xorg-core</code>
 +
</pre>
 +
 +
extract libmali-rk-dev_1.4-4_armhf.deb and libmali-rk-midgard0_1.4-4_armhf.deb(only debian/ubutnu, link by yourself if you are using other distributions) and copy them to target system.<br/> delete origin egl,gles library(For insurance)
 +
<pre><code>rm -rf /usr/lib/arm-linux-gnueabihf/mesa-egl</code>
 +
</pre>
 +
 +
download xserver
 +
<pre><code>git clone [https://github.com/rockchip-linux/xserver.git https://github.com/rockchip-linux/xserver.git]</code>
 +
</pre>
 +
 +
delete those in configure.ac
 +
<pre><code>AC_CHECK_DECL(GBM_BO_USE_LINEAR,
 +
                        [AC_DEFINE(GLAMOR_HAS_GBM_LINEAR, 1, [Have GBM_BO_USE_LINEAR])], []</code>
 +
</pre>
 +
 +
build xserver<br/> (You can also use 'make install DESTDIR=/opt/x-build' to get files and copy them to a clean system)<br/> (This method is easy but slow, it'better to cross compile xserver under the ubuntu/debian multiarch environment)
 +
<pre><code>./autogen.sh --prefix=/usr --enable-aiglx --enable-composite --enable-record --enable-xv --enable-xvmc --enable-dga --enable-screensaver --enable-xdmcp --enable-xdm-auth-1 --enable-glx --enable-dri --enable-dri2 --enable-glamor --enable-dri3 --enable-libdrm --enable-present --enable-xinerama --enable-xf86vidmode --enable-xace --enable-xselinux --enable-xfree86-utils --enable-xwayland --enable-systemd-logind --with-systemd-daemon --enable-suid-wrapper --enable-dmx --enable-xvfb --enable-xnest --enable-kdrive --enable-xephyr --enable-xmir --with-sha1=libgcrypt --enable-xcsecurity  --with-log-dir=/var/log
 +
make
 +
make install</code>
 +
</pre>
 +
 +
set password
 +
<pre><code>useradd -s '/bin/bash' -m -G adm,sudo rk
 +
echo "Set password for rk:"
 +
passwd rk
 +
echo "Set password for root:"
 +
passwd root</code>
 +
</pre>
 +
 +
exit chroot
 +
<pre><code>exit
 +
ch-mount.sh -u ubuntu/</code>
 +
</pre>
 +
 +
<br/> copy ttyS2.conf and udev directory to target rootfs from&nbsp;[https://github.com/rockchip-linux/rk-rootfs-build/tree/master/overlay rk-rootfs.build]
 +
 +
make image
 +
<pre><code>dd if=/dev/zero of=ubuntu.img  bs=1M count=3000
 +
sudo mkfs.ext4 ubuntu.img
 +
mkdir ubuntu-mount
 +
sudo mount  ubuntu.img ubuntu-mount
 +
sudo cp -rfp ubuntu ubuntu-mount
 +
sudo umount ubuntu-mount
 +
e2fsck -p -f ubuntu.img
 +
resize2fs -M ubuntu.img</code>
 +
</pre>
 +
 +
==== update ====
 +
 +
There is a ubuntu build script in our&nbsp;[https://github.com/rockchip-linux/rk-rootfs-build rootfs-build]&nbsp;repo. It's different from the above example, it unpack the debian packages rather than compile from source.<br/> Please refer to the readme.

Revision as of 13:07, 16 March 2017

The release rootfs image is based on linaro-alip-jessie.If you want to use other distributions, you need to compile and install components we provide.Do not install the deb under rk-rootfs-build directly.

We currently provide several components, the guide below only help you make xserver work.
For more details Please refer to each package's wiki.

There are also many other districbutions support by community or developers.

ARCH Linux

Here is the guide from Arch Linux

https://archlinuxarm.org/platforms/armv7/rockchip

https://archlinuxarm.org/platforms/armv8/rockchip/

and source code here:

https://github.com/archlinuxarm/PKGBUILDs/tree/master/core/linux-gru

 

Ubuntu 16.04

download and extract ubuntu-xenial

<code>wget [http://cdimage.ubuntu.com/ubuntu-base/releases/16.04/release/ubuntu-base-16.04-core-armhf.tar.gz http://cdimage.ubuntu.com/ubuntu-base/releases/16.04/release/ubuntu-base-16.04-core-armhf.tar.gz]
sudo tar -xpf ubuntu-base-16.04-core-armhf.tar.gz</code>

copy qemu

<code>sudo apt-get install qemu-user-static
sudo cp /usr/bin/qemu-arm-static usr/bin/</code>

copy host's dns to rootfs

<code>sudo cp -b /etc/resolv.conf  etc/resolv.conf</code>

add the following repository to etc/apt/source.list(for compiling xserver)

<code>deb [http://ports.ubuntu.com/ubuntu-ports/ http://ports.ubuntu.com/ubuntu-ports/] xenial main universe
deb-src [http://ports.ubuntu.com/ubuntu-ports/ http://ports.ubuntu.com/ubuntu-ports/] xenial main universe</code>

chroot to target rootfs
ch-mount.sh

<code>ch-mount.sh -m ubuntu/</code>

install desktop

<code>apt-get install lightdm vim git
apt-get build-dep xserver-xorg-core</code>

extract libmali-rk-dev_1.4-4_armhf.deb and libmali-rk-midgard0_1.4-4_armhf.deb(only debian/ubutnu, link by yourself if you are using other distributions) and copy them to target system.
delete origin egl,gles library(For insurance)

<code>rm -rf /usr/lib/arm-linux-gnueabihf/mesa-egl</code>

download xserver

<code>git clone [https://github.com/rockchip-linux/xserver.git https://github.com/rockchip-linux/xserver.git]</code>

delete those in configure.ac

<code>AC_CHECK_DECL(GBM_BO_USE_LINEAR,
                        [AC_DEFINE(GLAMOR_HAS_GBM_LINEAR, 1, [Have GBM_BO_USE_LINEAR])], []</code>

build xserver
(You can also use 'make install DESTDIR=/opt/x-build' to get files and copy them to a clean system)
(This method is easy but slow, it'better to cross compile xserver under the ubuntu/debian multiarch environment)

<code>./autogen.sh --prefix=/usr --enable-aiglx --enable-composite --enable-record --enable-xv --enable-xvmc --enable-dga --enable-screensaver --enable-xdmcp --enable-xdm-auth-1 --enable-glx --enable-dri --enable-dri2 --enable-glamor --enable-dri3 --enable-libdrm --enable-present --enable-xinerama --enable-xf86vidmode --enable-xace --enable-xselinux --enable-xfree86-utils --enable-xwayland --enable-systemd-logind --with-systemd-daemon --enable-suid-wrapper --enable-dmx --enable-xvfb --enable-xnest --enable-kdrive --enable-xephyr --enable-xmir --with-sha1=libgcrypt --enable-xcsecurity  --with-log-dir=/var/log
make
make install</code>

set password

<code>useradd -s '/bin/bash' -m -G adm,sudo rk
echo "Set password for rk:"
passwd rk
echo "Set password for root:"
passwd root</code>

exit chroot

<code>exit
ch-mount.sh -u ubuntu/</code>


copy ttyS2.conf and udev directory to target rootfs from rk-rootfs.build

make image

<code>dd if=/dev/zero of=ubuntu.img  bs=1M count=3000
sudo mkfs.ext4 ubuntu.img
mkdir ubuntu-mount
sudo mount  ubuntu.img ubuntu-mount
sudo cp -rfp ubuntu ubuntu-mount
sudo umount ubuntu-mount
e2fsck -p -f ubuntu.img
resize2fs -M ubuntu.img</code>

update

There is a ubuntu build script in our rootfs-build repo. It's different from the above example, it unpack the debian packages rather than compile from source.
Please refer to the readme.