Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # short-description: Create FOD final sdcard image
  2. # long-description: Creates a partitioned sdcard image for FOD SoM
  3. # can directly dd to boot media. The selected bootloader is u-boot.
  4.  
  5. part SPL --source rawcopy --sourceparams="file=SPL" --ondisk mmcblk --no-table --align 1
  6. part u-boot --source rawcopy --sourceparams="file=u-boot.img" --ondisk mmcblk --no-table --align 69
  7.  
  8. part --source bootimg-partition --ondisk mmcblk --fstype=ext4 --label RECOVERY --active --align 4096 --size 40
  9.  
  10. part / --source rootfs --rootfs-dir=fod-user-image --ondisk mmcblk --fstype=ext4 --label USER1 --align 51200 --size 2048
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement