Difference between revisions of "RSB-3720 Ubunut creation by Yocto30 kernel"
From ESS-WIKI
| Line 49: | Line 49: | ||
: | : | ||
| + | | ||
== '''Change rootfs''' == | == '''Change rootfs''' == | ||
| Line 76: | Line 77: | ||
:<span style="font-size:large;"><code>$ sudo cp -a ~/modules ~/yocto/rootfs/lib/</code></span> | :<span style="font-size:large;"><code>$ sudo cp -a ~/modules ~/yocto/rootfs/lib/</code></span> | ||
| − | :<span style="font-size:large;">[[File:RSB-3720 Ubunut creation by Yocto30 kernel change module.png|RTENOTITLE]]</span> | + | :<span style="font-size:large;">[[File:RSB-3720 Ubunut creation by Yocto30 kernel change module.png|RTENOTITLE]]</span> |
== '''Analyze dependency file''' == | == '''Analyze dependency file''' == | ||
| Line 90: | Line 91: | ||
:<span style="font-size:large;"><code>$ depmod -a 5.4.70-2.3.0/</code></span> | :<span style="font-size:large;"><code>$ depmod -a 5.4.70-2.3.0/</code></span> | ||
| − | :[[File:RSB-3720 Ubunut creation by Yocto30 kernel Analyze file replaced by module dependencies.png|RTENOTITLE]] | + | :[[File:RSB-3720 Ubunut creation by Yocto30 kernel Analyze file replaced by module dependencies.png|RTENOTITLE]] |
| + | |||
| + | == '''Umount target image''' == | ||
| + | |||
| + | *<font size="3">'''Umount rootfs'''</font> | ||
| + | |||
| + | :<span style="font-size:large;"><code>$ exit</code></span> | ||
| + | |||
| + | :<span style="font-size:large;"><code>$ sudo umount ~/yocto/rootfs/</code></span> | ||
| + | |||
| + | :<span style="font-size:large;"><code>$ sudo umount ~/ubuntu/rootfs/</code></span> | ||
| + | |||
| + | :[[File:RSB-3720 Ubunut creation by Yocto30 kernel Umount target image.png|RTENOTITLE]] | ||
| + | |||
| + | *<span style="font-size:medium;">'''Remove virtual device'''</span> | ||
| + | |||
| + | :<span style="font-size:large;"><code>sudo losetup -d /dev/loop22</code></span> | ||
| + | |||
| + | :<span style="font-size:large;"><code>sudo losetup -d /dev/loop23</code></span> | ||
| + | |||
| + | :[[File:RSB-3720 Ubunut creation by Yocto30 kernel Remove virtual device.png|RTENOTITLE]] | ||
| + | |||
| + | == '''Flash target image''' == | ||
| + | |||
| + | :<span style="font-size:large;"><code>sudo dd if=imx-image-full-imx8mprsb3720a1-20230814102331.rootfs.wic of=/dev/sde bs=1M conv=fsync</code></span> | ||
| + | |||
| + | :[[File:RSB-3720 Ubunut creation by Yocto30 kernel_Flash target image.png|RTENOTITLE]] | ||
Revision as of 06:47, 18 August 2023
Contents
Prepare Image
- Build Yocto Linux image with your expected version (e.g. A0386)
- You can follow this SOP to build your Yocto image.
- Modify kernel to "Add commit to support the Ubuntu desktop version"
- Prepare Ubuntu image (e.g. A0362)
Mount image
- You can find Yocto image in${WORKSPACE}/build/tmp/deplay/image/${MC}, and copy to your ${WORKSPACE}.
$ sudo cp –a imx-image-${MC}-20230816082527.rootfs.wic.bz2 ${WORKSPACE}.
- Unpack rootfs.wic
$sudo bzip2 -d imx-image-full-${MC}-20230814102331.rootfs.wic.bz2
- Create folders to mount
$mkdir ubuntu yocto
$mkdir ubuntu/rootfs yocto/rootfs
- Mount Yocto image and Ubuntu image Partition2
$sudo losetup --show -f -P imx-image-full-imx8mprsb3720a1-20230814102331.rootfs.wic
$sudo mount /dev/loop22p2 yocto/rootfs/
$sudo losetup --show -f -P 3720A1AIM30UIVA0362_iMX8MP_4G_2021-11-29.img
Change rootfs
- Copy Yocto module to${WORKSPACE}, then you can find Yocto module in rootfs/lib
$ sudo cp -a yocto/rootfs/lib/modules/ /home/adv/
- Delete under Yocto rootfs all files, and replace to Ubuntu rootfs
$ sudo rm -rf yocto/rootfs/
$ sudo cd ubuntu/rootfs/
$ sudo cp -a bin boot dev etc home lib media mnt opt proc root run sbin srv swapfile sys tmp usr var ~/yocto/rootfs/
- Repalce with Yocto module
$ cd ~/yocto/roosfs/lib
$ sudo rm -rf modules/
$ sudo cp -a ~/modules ~/yocto/rootfs/lib/
Analyze dependency file
- Enter target image root directory
$ sudo chroot rootfs/
- Analyze file replaced by module dependencies
$ depmod -a 5.4.70-2.3.0/
Umount target image
- Umount rootfs
$ exit
$ sudo umount ~/yocto/rootfs/
$ sudo umount ~/ubuntu/rootfs/
- Remove virtual device
sudo losetup -d /dev/loop22
sudo losetup -d /dev/loop23
Flash target image
sudo dd if=imx-image-full-imx8mprsb3720a1-20230814102331.rootfs.wic of=/dev/sde bs=1M conv=fsync









