Skip to content

Commit

Permalink
wic/sunxi-mmc-spl.wks: bring back data partition
Browse files Browse the repository at this point in the history
We need /data partition for persistent storage to preserve existing
features of RTE.

Signed-off-by: Maciej Pijanowski <[email protected]>
  • Loading branch information
macpijan committed Oct 23, 2024
1 parent a3e6649 commit 9e2e34e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions wic/sunxi-mmc-spl.wks
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
part u-boot --source rawcopy --sourceparams="file=u-boot-sunxi-with-spl.bin" --ondisk mmcblk0 --no-table --align 8
part /boot/bootpart --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 1024 --fixed-size 16
part / --source rootfs --rootfs-dir=rootfs-main --ondisk mmcblk0 --fstype=ext4 --label rootfs1 --align 1024 --fixed-size 256
part --source rootfs --rootfs-dir=rootfs-main --ondisk mmcblk0 --fstype=ext4 --label rootfs2 --align 1024 --fixed-size 256
part / --source rootfs --rootfs-dir=rootfs-main --ondisk mmcblk0 --fstype=ext4 --label rootfs1 --align 1024 --fixed-size 256 --exclude-path data/
part --source rootfs --rootfs-dir=rootfs-main --ondisk mmcblk0 --fstype=ext4 --label rootfs2 --align 1024 --fixed-size 256 --exclude-path data/
part /data --source rootfs --rootfs-dir=rootfs-data --ondisk mmcblk0 --fstype=ext4 --label data --align 1024 --fixed-size 512

0 comments on commit 9e2e34e

Please sign in to comment.