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
| # Minimal SD card image for the Allwinner Nezha
|
| image sdcard.img {
| hdimage {
| }
|
| partition boot0-1 {
| in-partition-table = "no"
| image = "boot0_sdcard_sun20iw1p1.bin"
| offset = 8K
| }
|
| partition boot0-2 {
| in-partition-table = "no"
| image = "boot0_sdcard_sun20iw1p1.bin"
| offset = 128K
| }
|
| partition u-boot-1 {
| in-partition-table = "no"
| image = "u-boot.toc1"
| offset = 12288K
| }
|
| partition u-boot-2 {
| in-partition-table = "no"
| image = "u-boot.toc1"
| offset = 16400K
| }
|
| partition rootfs {
| partition-type = 0x83
| image = "rootfs.ext4"
| bootable = "true"
| offset = 18M
| }
| }
|
|