hc
2024-03-22 f63cd4c03ea42695d5f9b0e1798edd196923aae6
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
image boot.vfat {
   vfat {
       files = {
           "boot.ini",
           "zImage",
           "exynos5422-odroidxu4.dtb"
       }
   }
 
   size = 32M
}
 
image sdcard.img {
   hdimage {
   }
 
   partition bl1 {
       in-partition-table = "no"
       image = "bl1.bin.hardkernel"
       offset = 512
       size = 15K
   }
 
   partition bl2 {
       in-partition-table = "no"
       image = "bl2.bin.hardkernel.720k_uboot"
       offset = 15872 # 15KB + 512B
       size = 16K
   }
 
   partition u-boot {
       in-partition-table = "no"
       image = "u-boot-dtb.bin"
       offset = 32256 # 31KB + 512B
       size = 720K
   }
 
   partition tzsw {
       in-partition-table = "no"
       image = "tzsw.bin.hardkernel"
       offset = 769536 # 751KB + 512B
       size = 256K
   }
 
   partition vfat {
       partition-type = 0xC
       image = "boot.vfat"
       offset = 2M
   }
 
   partition rootfs {
       partition-type = 0x83
       image = "rootfs.ext4"
   }
}