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