friendlyarm / sd-fuse_rk3328

42 stars 24 forks source link

sd-fuse_rk3328

Introduction

This repository is a bunch of scripts to build bootable SD card images for FriendlyElec RK3328 boards, the main features are as follows:

Read this in other languages: 简体中文

Requirements

Kernel Version Support

The sd-fuse use multiple git branches to support each version of the kernel, the current branche supported kernel version is as follows:

For other kernel versions, please switch to the related git branch.

Target board OS Supported

Notes: The OS name is the same as the directory name, it is written in the script so it cannot be renamed.

To build an SD card image for ubuntu-noble-core, for example like this:

./mk-sd-image.sh ubuntu-noble-core-arm64

Where to download files

The following files may be required to build SD card image:

If the files are not prepared in advance, the script will automatically download the required files, but the speed may be slower due to the bandwidth of the http server.

Script Functions

Usage

Build your own SD card image

Note: Here we use ubuntu-noble-core system as an example
Clone this repository locally, then download and uncompress the pre-built images, due to the bandwidth of the http server, we recommend downloading the file from the NetDrive:

git clone https://github.com/friendlyarm/sd-fuse_rk3328 -b kernel-6.1.y --single-branch sd-fuse_rk3328-kernel6.1
cd sd-fuse_rk3328-kernel6.1
wget http://112.124.9.243/dvdfiles/rk3328/images-for-eflasher/ubuntu-noble-core-arm64-images.tgz
tar xvzf ubuntu-noble-core-arm64-images.tgz

After decompressing, you will get a directory named ubuntu-noble-core-arm64, you can change the files in the directory as needed, for example, replace rootfs.img with your own modified version, or your own compiled kernel and uboot, finally, flash the image to the SD card by entering the following command (The below steps assume your SD card is device /dev/sdX):

sudo ./fusing.sh /dev/sdX ubuntu-noble-core-arm64

Or, package it as an SD card image file:

./mk-sd-image.sh ubuntu-noble-core-arm64

The following flashable image file will be generated, it is now ready to be used to boot the device into ubuntu-noble-core:

out/rk3328-sd-ubuntu-noble-core-6.1-arm64-YYYYMMDD.img

Create an SD card image that does not use OverlayFS

The following command will create an SD card image with OverlayFS disabled:

cp prebuilt/parameter-plain.txt ubuntu-noble-core-arm64/parameter.txt
./mk-sd-image.sh ubuntu-noble-core-arm64

The benefits of disabling OverlayFS are as follows:

Build your own SD-to-eMMC Image

Note: Here we use ubuntu-noble-core system as an example
Clone this repository locally, then download and uncompress the pre-built images, here you need to download the ubuntu-noble-core and eflasher pre-built images:

git clone https://github.com/friendlyarm/sd-fuse_rk3328 -b kernel-6.1.y --single-branch sd-fuse_rk3328-kernel6.1
cd sd-fuse_rk3328-kernel6.1
wget http://112.124.9.243/dvdfiles/rk3328/images-for-eflasher/ubuntu-noble-core-arm64-images.tgz
tar xvzf ubuntu-noble-core-arm64-images.tgz
wget http://112.124.9.243/dvdfiles/rk3328/images-for-eflasher/emmc-flasher-images.tgz
tar xvzf emmc-flasher-images.tgz

Then use the following command to build the SD-to-eMMC image, the autostart=yes parameter means it will automatically enter the flash process when booting:

./mk-emmc-image.sh ubuntu-noble-core-arm64 autostart=yes

The following flashable image file will be generated, ready to be used to boot the device into eflasher system and then flash ubuntu-noble-core system to eMMC:

out/rk3328-eflasher-ubuntu-noble-core-6.1-arm64-YYYYMMDD.img

Backup rootfs and create custom SD image (to burn your application into other boards)

Backup rootfs

Run the following commands on your target board. These commands will back up the entire root partition:

sudo passwd root
su root
cd /
tar --warning=no-file-changed -cvpzf /rootfs.tar.gz \
    --exclude=/rootfs.tar.gz --exclude=/var/lib/docker/runtimes \
    --exclude=/etc/firstuser --exclude=/etc/friendlyelec-release \
    --exclude=/usr/local/first_boot_flag --one-file-system /

Making a bootable SD card from a root filesystem

Note: Here we use ubuntu-noble-core system as an example
Clone this repository locally, then download and uncompress the pre-built images:

git clone https://github.com/friendlyarm/sd-fuse_rk3328 -b kernel-6.1.y --single-branch sd-fuse_rk3328-kernel6.1
cd sd-fuse_rk3328-kernel6.1
wget http://112.124.9.243/dvdfiles/rk3328/images-for-eflasher/ubuntu-noble-core-arm64-images.tgz
tar xvzf ubuntu-noble-core-arm64-images.tgz

Extract the rootfs.tar.gz exported in the previous section, the tar command requires root privileges, so you need put sudo in front of the command:

mkdir ubuntu-noble-core-arm64/rootfs
./tools/extract-rootfs-tar.sh rootfs.tar.gz ubuntu-noble-core-arm64/rootfs

or download the filesystem archive from the following URL and extract it:

wget http://112.124.9.243/dvdfiles/rk3328/rootfs/rootfs-ubuntu-noble-core-arm64.tgz
./tools/extract-rootfs-tar.sh rootfs-ubuntu-noble-core-arm64.tgz

Make rootfs to img:

sudo ./build-rootfs-img.sh ubuntu-noble-core-arm64/rootfs ubuntu-noble-core-arm64

Use the new rootfs.img to build SD card image:

./mk-sd-image.sh ubuntu-noble-core-arm64

Or build SD-to-eMMC image:

./mk-emmc-image.sh ubuntu-noble-core-arm64 autostart=yes

If the image path is too big to pack, you can use the RAW_SIZE_MB environment variable to set a new image size. for example, you can set it to 16GB:

RAW_SIZE_MB=16000 ./mk-sd-image.sh ubuntu-noble-core-arm64
RAW_SIZE_MB=16000 ./mk-emmc-image.sh ubuntu-noble-core-arm64

Using BTRFS as your root filesystem

First, use the following command to check if your kernel supports the BTRFS file system:

cat /proc/filesystems | grep btrfs

If not, you can add BTRFS support by add the line CONFIG_BTRFS_FS=y to the .config file, you can refer to the script test/test-btrfs-rootfs.sh for more details.

Compiling the Kernel

Note: Here we use ubuntu-noble-core system as an example
Clone this repository locally, then download and uncompress the pre-built images:

git clone https://github.com/friendlyarm/sd-fuse_rk3328 -b kernel-6.1.y --single-branch sd-fuse_rk3328-kernel6.1
cd sd-fuse_rk3328-kernel6.1
wget http://112.124.9.243/dvdfiles/rk3328/images-for-eflasher/ubuntu-noble-core-arm64-images.tgz
tar xvzf ubuntu-noble-core-arm64-images.tgz

Download the kernel source code from github:

git clone https://github.com/friendlyarm/kernel-rockchip -b nanopi-r2-v6.1.y --depth 1 kernel

Customize the kernel configuration:

cd kernel
touch .scmversion
make ARCH=arm64 nanopi-r2_linux_defconfig
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- menuconfig
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- savedefconfig
cp defconfig ./arch/arm64/configs/my_defconfig                  # Save the configuration as my_defconfig
git add ./arch/arm64/configs/my_defconfig
cd -

To compile the kernel, use the environment variables KERNEL_SRC and KCFG to set the source code folder and the defconfig file:

KERNEL_SRC=kernel KCFG=my_defconfig ./build-kernel.sh ubuntu-noble-core-arm64

Compiling the kernel headers only

Set the environment variable MK_HEADERS_DEB to 1, which will compile the kernel headers:

MK_HEADERS_DEB=1 ./build-kernel.sh ubuntu-noble-core-arm64

Environment Variables

Compiling the u-boot

Note: Here we use ubuntu-noble-core system as an example Clone this repository locally, then download and uncompress the pre-built images:

git clone https://github.com/friendlyarm/sd-fuse_rk3328 -b kernel-6.1.y --single-branch sd-fuse_rk3328-kernel6.1
cd sd-fuse_rk3328-kernel6.1
wget http://112.124.9.243/dvdfiles/rk3328/images-for-eflasher/ubuntu-noble-core-arm64-images.tgz
tar xvzf ubuntu-noble-core-arm64-images.tgz

Download the u-boot source code from github that matches the OS version, the environment variable UBOOT_SRC is used to specify the local source code directory:

git clone https://github.com/friendlyarm/uboot-rockchip -b nanopi4-v2017.09 --depth 1 uboot
UBOOT_SRC=uboot ./build-uboot.sh ubuntu-noble-core-arm64

Common Issues and Solutions