python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / board / cubietech / cubieboard2 / genimage.cfg
blobb082ab0da115beb2261413db7a36c16ca0b5fee4
1 # Minimal SD card image for the Cubieboard2
2 # Based in the Orange Pi genimage.cfg
4 image boot.vfat {
5         vfat {
6                 files = {
7                         "zImage",
8                         "sun7i-a20-cubieboard2.dtb",
9                         "boot.scr"
10                 }
11         }
12         size = 10M
15 image sdcard.img {
16         hdimage {
17         }
19         partition u-boot {
20                 in-partition-table = "no"
21                 image = "u-boot-sunxi-with-spl.bin"
22                 offset = 8192
23                 size = 1040384 # 1MB - 8192
24         }
26         partition boot {
27                 partition-type = 0xC
28                 bootable = "true"
29                 image = "boot.vfat"
30         }
32         partition rootfs {
33                 partition-type = 0x83
34                 image = "rootfs.ext4"
35                 size = 512M
36         }