blob: 4cb5f359389b0f105e3db4644f29dbf6be33cbac (
plain)
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
|
image boot.vfat {
vfat {
files = {
"kernel",
"rk3399-rock-pi-4b-plus.dtb",
"extlinux"
}
}
size = 32M
}
image sdcard.img {
hdimage {
}
partition loader1 {
in-partition-table = "no"
image = "idbloader.img"
offset = 32K
}
partition loader2 {
in-partition-table = "no"
image = "u-boot.itb"
offset = 8M
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
offset = 16M
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext"
}
partition cfgfs {
partition-type = 0x88
image = "cfgfs.img"
}
}
|