Advertisement
Guest User

Untitled

a guest
May 6th, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # Boot partition
  2. part --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4096 --fixed-size 100
  3.  
  4. # First RootFS parition
  5. part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4096 --fixed-size=2G
  6.  
  7. # Second RootFS parition
  8. part --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root2 --align 4096 --fixed-size=2G
  9.  
  10. # Third RootFS parition
  11. part --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root3 --align 4096 --fixed-size=2G
  12.  
  13. # Boot environment parition
  14. part --ondisk mmcblk0 --fstype=vfat --label bootenv --align 4096 --fixed-size 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement