blob: 9d2d124f1949dc7acd5ebe663780f9c0065153bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
image sdcard.img {
partition u-boot {
in-partition-table = false
image = "u-boot-sunxi-with-spl.bin"
offset = 8K
size = 1000K # 1MB - 8KB(offset) - 16KB(GPT)
}
hdimage {
partition-table-type = "gpt"
gpt-location = 1008K # 1MB - 16KB(GPT)
gpt-no-backup = true
}
partition rootfs {
offset = 1M
image = "rootfs.ext"
partition-uuid = f6c8cabe-f191-4392-89bb-2ba14119482e
}
}
|