x40

Untitled

x40
Aug 2nd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. image boot.vfat {
  2. vfat {
  3. extraargs = "-n BOOT"
  4. files = {
  5. "Image",
  6. "sun50i-a64-pine64-plus.dtb",
  7. "boot.scr",
  8. # "../uEnv.txt",
  9. # "../uboot.env",
  10. }
  11. }
  12. size = 64M
  13. }
  14.  
  15. image sdcard.img {
  16. hdimage {
  17. }
  18.  
  19. partition u-boot {
  20. in-partition-table = "no"
  21. offset = 8192
  22. image = "../a64_boot.bin"
  23. # image = "bootpart.img"
  24. }
  25.  
  26. partition boot {
  27. partition-type = 0xC
  28. image = "boot.vfat"
  29. }
  30.  
  31. partition rootfs {
  32. partition-type = 0x83
  33. image = "rootfs.ext4"
  34. size = 512M
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment