hc
2023-03-13 2ec15ae1cb4be1b4fcb56c6d621123d7ebdaad6c
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
# Image for SD card boot on Atmel SAMA5D3 Xplained boards
#
image boot.vfat {
   vfat {
       files = {
           "zImage",
           "at91-sama5d3_xplained.dtb",
           "at91-sama5d3_xplained_pda4.dtb",
           "at91-sama5d3_xplained_pda7.dtb",
           "at91-sama5d3_xplained_pda7b.dtb",
           "boot.bin",
           "u-boot.bin"
       }
   }
   size = 16M
}
 
image sdcard.img {
   hdimage {
   }
 
   partition boot {
       partition-type = 0xC
       bootable = "true"
       image = "boot.vfat"
       offset = 1M
   }
 
   partition rootfs {
       partition-type = 0x83
       image = "rootfs.ext4"
       size = 512M
   }
}