Difference between revisions of "Template:RockchipMiscCustome"
From FriendlyELEC WiKi
(updated by API) |
(updated by API) |
||
Line 15: | Line 15: | ||
{{#switch: {{{1}}} | {{#switch: {{{1}}} | ||
| RK3328 = | | RK3328 = | ||
− | Run the following script on your Linux PC host, we'll only mention " | + | Run the following script on your Linux PC host, we'll only mention "ubuntu-noble-core-arm64 os" for brevity, but you can apply the same process for every linux OS. |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
su root | su root | ||
git clone https://github.com/friendlyarm/sd-fuse_rk3328 --single-branch -b kernel-6.1.y | git clone https://github.com/friendlyarm/sd-fuse_rk3328 --single-branch -b kernel-6.1.y | ||
cd sd-fuse_rk3328 | cd sd-fuse_rk3328 | ||
− | tar xvzf /path/to/netdrive/03_Partition\ image\ files/ | + | tar xvzf /path/to/netdrive/03_Partition\ image\ files/ubuntu-noble-core-arm64-images.tgz |
tar xvzf /path/to/netdrive/03_Partition\ image\ files/emmc-eflasher-images.tgz | tar xvzf /path/to/netdrive/03_Partition\ image\ files/emmc-eflasher-images.tgz | ||
scp pi@BOARDIP:/rootfs.tar.gz /rootfs.tar.gz | scp pi@BOARDIP:/rootfs.tar.gz /rootfs.tar.gz | ||
mkdir rootfs | mkdir rootfs | ||
tar xvzfp rootfs.tar.gz -C rootfs --numeric-owner --same-owner | tar xvzfp rootfs.tar.gz -C rootfs --numeric-owner --same-owner | ||
− | ./build-rootfs-img.sh rootfs | + | ./build-rootfs-img.sh rootfs ubuntu-noble-core-arm64 |
− | ./mk-sd-image.sh | + | ./mk-sd-image.sh ubuntu-noble-core-arm64 |
− | ./mk-emmc-image.sh | + | ./mk-emmc-image.sh ubuntu-noble-core-arm64 autostart=yes |
</syntaxhighlight> | </syntaxhighlight> | ||
| RK3399 = | | RK3399 = |
Revision as of 08:18, 1 July 2024
1 Backup rootfs and create custom SD image (to burn your application into other boards)
1.1 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 /
Note: if there is a mounted directory on the system, an error message will appear at the end, which can be ignored.
1.2 Making a bootable SD card from a root filesystem
Only support RK3328/RK3399/RK3568/RK3588