Difference between revisions of "Rock3/Android11"
< Rock3
Line 69: | Line 69: | ||
</code> | </code> | ||
− | ==== Build | + | ==== Build ==== |
+ | ===== One Step build ===== | ||
<code bash> | <code bash> | ||
radxa:rock-android11 $ source build/envsetup.sh | radxa:rock-android11 $ source build/envsetup.sh | ||
Line 77: | Line 78: | ||
</code> | </code> | ||
− | ==== Parts Build ==== | + | ===== Parts Build ===== |
− | ===== Build u-boot ===== | + | ====== Build u-boot ====== |
<code bash> | <code bash> | ||
radxa:rock-android11 $ cd u-boot | radxa:rock-android11 $ cd u-boot | ||
Line 89: | Line 90: | ||
The generated images are **rk3399_loader_v_xxx.bin** , and **uboot.img** | The generated images are **rk3399_loader_v_xxx.bin** , and **uboot.img** | ||
− | ===== Building kernel ===== | + | ====== Building kernel ====== |
<code bash> | <code bash> | ||
radxa:rock-android11 $ cd kernel | radxa:rock-android11 $ cd kernel | ||
Line 100: | Line 101: | ||
− | ===== Building AOSP ===== | + | ====== Building AOSP ====== |
<code bash> | <code bash> | ||
radxa:rock-android11 $ source buile/envsetup.sh | radxa:rock-android11 $ source buile/envsetup.sh | ||
Line 108: | Line 109: | ||
It takes a long time, take a break and wait... | It takes a long time, take a break and wait... | ||
− | ===== | + | ====== Make images ====== |
<code bash> | <code bash> | ||
radxa:rock-android11 $ rm -rf rockdev | radxa:rock-android11 $ rm -rf rockdev | ||
Line 115: | Line 116: | ||
</code> | </code> | ||
− | ===== | + | ====== Integrate Image ====== |
<code bash> | <code bash> | ||
radxa:rock-android11 $ cd rockdev | radxa:rock-android11 $ cd rockdev |
Revision as of 08:15, 8 October 2021
ROCK 3 > Andriod11
Recommend build host is Ubuntu 20.04 64bit, for other hosts, refer official Android documents Establishing a Build Environment.
Contents
Repo
radxa$ wget 'https://storage.googleapis.com/git-repo-downloads/repo' -P /tmp/ radxa$ sudo cp /tmp/repo /usr/local/bin/repo radxa$ sudo chmod +x /usr/local/bin/repo
In China Download Repo:
radxa$ echo "export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/'" >> ~/.bashrc radxa$ source ~/.bashrc radxa$ curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o /tmp/repo radxa$ sudo cp /tmp/repo /usr/local/bin/repo radxa$ sudo chmod +x /usr/local/bin/repo
DockerFile
FROM ubuntu:xenial
RUN apt-get update -y && apt-get install -y openjdk-8-jdk python git-core gnupg flex bison gperf build-essential \ zip curl liblz4-tool zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 \ lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z-dev ccache \ libgl1-mesa-dev libxml2-utils xsltproc unzip mtools u-boot-tools \ htop iotop sysstat iftop pigz bc device-tree-compiler lunzip \ dosfstools vim-common parted udev libssl-dev python3 python-pip lzop swig
#### For China RUN curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo > /usr/local/bin/repo && \ chmod +x /usr/local/bin/repo && \ which repo ENV REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/' #### For China End
RUN pip install pycrypto ENV USER=android11-docker ARG USER_ID=0 ARG GROUP_ID=0 RUN groupadd -g ${GROUP_ID} jenkins-docker && useradd -m -g jenkins-docker -u ${USER_ID} android9-docker
USER android11-docker
Build DockerFile
radxa$ docker build -t android-builder:11.x --build-arg USER_ID=`id -u` --build-arg GROUP_ID=`id -g` $(which-dir-dockerfile-in)
Download source code
$ mkdir rock-android11 $ cd rock-android11
Then run:
radxa:rock-android11 $ repo init -u https://github.com/radxa/manifests.git -b Android11_Radxa_rk10.1 -m rockchip-r-release.xml radxa:rock-android11 $ repo sync -d --no-tags -j4
Build
One Step build
radxa:rock-android11 $ source build/envsetup.sh radxa:rock-android11 $ lunch rk3568_rock_3a_r-userdebug radxa:rock-android11 $ ./build.sh -UACKup # get images from IMAGE directory
Parts Build
Build u-boot
radxa:rock-android11 $ cd u-boot radxa:rock-android11/u-boot $ make clean radxa:rock-android11/u-boot $ make mrproper radxa:rock-android11/u-boot $ make distclean radxa:rock-android11/u-boot $ ./make.sh radxa_rock_3a_toybrick radxa:rock-android11 $ cd -
The generated images are **rk3399_loader_v_xxx.bin** , and **uboot.img**
Building kernel
radxa:rock-android11 $ cd kernel radxa:rock-android11/kernel $ ADDON_ARGS="CC=../prebuilts/clang/host/linux-x86/clang-r383902b/bin/clang LD=../prebuilts/clang/host/linux-x86/clang-r383902b/bin/ld.lld" radxa:rock-android11/kernel $ make clean radxa:rock-android11/kernel $ make $ADDON_ARGS ARCH=arm64 rockchip_defconfig radxa:rock-android11/kernel $ make $ADDON_ARGS ARCH=arm64 rk3568-rock-3A-1.2.img -j$(nproc) radxa:rock-android11 $ cd -
Building AOSP
radxa:rock-android11 $ source buile/envsetup.sh radxa:rock-android11 $ lunch rk3568_rock_3a_r-userdebug radxa:rock-android11 $ make -j$(nproc)
It takes a long time, take a break and wait...
Make images
radxa:rock-android11 $ rm -rf rockdev radxa:rock-android11 $ ln -s RKTools/linux/Linux_Pack_Firmware/rockdev . radxa:rock-android11 $ ./mkimage.sh
Integrate Image
radxa:rock-android11 $ cd rockdev radxa:rock-android11/rockdev $ ln -s Image-rk3568_rock_3a_r Image
1. RkUpdate Image
radxa:rock-android11/rockdev $ ./mkupdate_rk368x.sh
The images under rockdev/ are `update.img`
2. gpt Image
radxa:rock-android11/rockdev $ ./android-gpt.sh
Installation
- sdcard
- emmc with reader
Install on eMMC with USB to eMMC Reader
- emmc from usb port