Difference between revisions of "Debian9"
From ESS-WIKI
Line 26: | Line 26: | ||
<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, |
− | In /output/rockchip_rk3399_recovery/images create recovery.img, | ||
− | |||
== <span style="color:#0070c0">Build Rootfs</span> == | == <span style="color:#0070c0">Build Rootfs</span> == | ||
− | + | === <span style="color:#0070c0">Building base debian system by ubuntu-build-service from linaro</span> === | |
<syntaxhighlight lang="bash">$cd rootfs/ | <syntaxhighlight lang="bash">$cd rootfs/ | ||
− | + | $sudo apt-get install binfmt-support qemu-user-static live-build | |
$sudo dpkg -i ubuntu-build-service/packages/* | $sudo dpkg -i ubuntu-build-service/packages/* | ||
$sudo apt-get install -f | $sudo apt-get install -f | ||
Line 41: | Line 39: | ||
</syntaxhighlight> In rootfs creat linaro-stretch-alip-xxxxx-1.tar.gz | </syntaxhighlight> In rootfs creat linaro-stretch-alip-xxxxx-1.tar.gz | ||
+ | === <span style="color:#0070c0">Building rk-debian rootfs</span> === | ||
+ | <syntaxhighlight lang="bash">$ARCH=armhf ./mk-rootfs.sh | ||
+ | </syntaxhighlight> | ||
+ | or | ||
+ | <syntaxhighlight lang="bash">$VERSION=debug ARCH=armhf ./mk-rootfs-stretch.sh | ||
+ | </syntaxhighlight> | ||
− | === <span style="color:#0070c0"> | + | === <span style="color:#0070c0">Creating the ext4 image(</span> === |
− | + | <syntaxhighlight lang="bash">$./mk-image.sh | |
− | + | </syntaxhighlight> | |
− | |||
− | |||
− |
Revision as of 10:59, 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
Build Rootfs
Building base debian system by ubuntu-build-service from linaro
$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
Building rk-debian rootfs
$ARCH=armhf ./mk-rootfs.sh
or
$VERSION=debug ARCH=armhf ./mk-rootfs-stretch.sh
Creating the ext4 image(
$./mk-image.sh