python-pathvalidate: bump version to 0.14.1
[buildroot-gz.git] / board / lemaker / bananapro / genimage.cfg
blob190a4b1ff393bbc43d18803210b2367d32c47c5f
1 # Minimal SD card image for the Banana Pro
2 # Based in the Orange Pi genimage.cfg
4 image boot.vfat {
5         vfat {
6                 files = {
7                         "zImage",
8                         "sun7i-a20-bananapro.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         }