Hi @Chavira
I am using a 16 GB eMMC, and I have created partitions using a .wks file as shown below:
part u-boot --source rawcopy --sourceparams="file=imx-boot.tagged" --ondisk mmcblk --no-table --align 33
# Boot (128MB)
part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 8192 --fixed-size 128
# RootFS A (3GB)
part / --source rootfs --ondisk mmcblk --fstype=ext4 --label rootfsA --align 8192 --size 3072
# RootFS B (3GB)
part / --source rootfs --ondisk mmcblk --fstype=ext4 --label rootfsB --align 8192 --size 3072
# Recovery (500MB)
part /recovery --ondisk mmcblk --fstype=ext4 --label recovery --align 8192 --fixed-size 500
bootloader --ptable msdos
Currently, the system is running from Partition 2 (rootfsA).
To update a new root filesystem image, I am using the following steps:
mkdir p3
mount /dev/mmcblk2p3 p3
tar -xvf rootfs.tar -C p3
in that time i am getting this issue.i am using 2 GB RAM with QT application.is there any dts or kernel changes are needed?