Advertisement
zinosat

genimage for bbb

Feb 3rd, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "am335x-boneblack.dtb",
  5. "am335x-bone.dtb",
  6. "MLO",
  7. "u-boot.img",
  8. "uEnv.txt",
  9. "zImage"
  10. }
  11. }
  12. size = 10M
  13. }
  14.  
  15. image sdcard.img {
  16. hdimage {
  17. }
  18.  
  19. partition boot {
  20. partition-type = 0xb
  21. bootable = "true"
  22. image = "boot.vfat"
  23. }
  24.  
  25. partition rootfs {
  26. partition-type = 0x83
  27. image = "rootfs.ext2"
  28. size = 256M
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement