Difference between revisions of "Debian9"
From ESS-WIKI
Line 9: | Line 9: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== <span style="color:#0070c0">Build U-boot</span> == | == <span style="color:#0070c0">Build U-boot</span> == | ||
+ | |||
<syntaxhighlight lang="bash">$./make.sh evb-rk3399 | <syntaxhighlight lang="bash">$./make.sh evb-rk3399 | ||
− | </syntaxhighlight>OR | + | </syntaxhighlight>OR<syntaxhighlight lang="bash">$./mk-uboot.sh |
− | <syntaxhighlight lang="bash">$./mk-uboot.sh | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | == <span style="color:#0070c0">Build Kernel</span> == | ||
− | |||
<syntaxhighlight lang="bash">$cd kernel | <syntaxhighlight lang="bash">$cd kernel | ||
Line 22: | Line 22: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== <span style="color:#0070c0">Build Recovery</span> == | == <span style="color:#0070c0">Build Recovery</span> == | ||
+ | |||
<syntaxhighlight lang="bash">$cd .. | <syntaxhighlight lang="bash">$cd .. | ||
$./mk-recovery.sh | $./mk-recovery.sh | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | In /output/rockchip_rk3399_recovery/images create recovery.img, | ||
− | |||
Line 38: | Line 39: | ||
$sudo apt-get install -f | $sudo apt-get install -f | ||
$ARCH=armhf ./mk-base-debian.sh | $ARCH=armhf ./mk-base-debian.sh | ||
− | </syntaxhighlight> | + | </syntaxhighlight> In rootfs creat linaro-stretch-alip-xxxxx-1.tar.gz |
− | In rootfs creat linaro-stretch-alip-xxxxx-1.tar.gz | + | |
+ | |||
+ | |||
+ | |||
+ | === <span style="color:#0070c0">Building base debian system by ubuntu-build-service from linaro</span> === | ||
+ | |||
+ | |||
+ | === <span style="color:#0070c0">Building rk-debian rootfs</span> === | ||
+ | |||
+ | |||
+ | === <span style="color:#0070c0">Creating the ext4 image(</span> === |
Revision as of 10:56, 14 September 2018
Contents
Linux BSP Version
Debian9
Run Docker example
docker run -it --name rk_linux --privileged -v /home/adv/rk3399_v20:/home/adv/BSP:rw advrisc/u16.04-rkabv1:latest /bin/bash
Build U-boot
$./make.sh evb-rk3399
$./mk-uboot.sh
Build Kernel
$cd kernel
$make ARCH=arm64 rockchip_linux_defconfig
$make ARCH=arm64 rk3399-sapphire-excavator-linux.img -j12
Build Recovery
$cd ..
$./mk-recovery.sh
In /output/rockchip_rk3399_recovery/images create recovery.img,
Build Rootfs
$cd rootfs/
$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