1# Minimal SD card image for the Roseapple Pi 2# 3image boot.vfat { 4 vfat { 5 files = { 6 "uEnv.txt", 7 "uImage" 8 } 9 10 file kernel.dtb { 11 image = "owl-s500-roseapplepi.dtb" 12 } 13 } 14 15 size = 128M 16} 17 18image sdcard.img { 19 hdimage { 20 } 21 22 partition s500-bootloader { 23 in-partition-table = "no" 24 image = "s500-bootloader.bin" 25 offset = 0x200200 # 2MB + 512B 26 } 27 28 partition u-boot { 29 in-partition-table = "no" 30 image = "u-boot-dtb.img" 31 offset = 3M 32 } 33 34 partition boot { 35 partition-type = 0xC 36 bootable = "true" 37 image = "boot.vfat" 38 } 39} 40