python-pyasn: bump to version 1.6.0b1
[buildroot-gz.git] / board / orangepi / orangepi-pc / genimage.cfg
blob932d81cf125c8123c386f9a2d62f254665cca99e
1 # Minimal SD card image for the OrangePi PC
3 image boot.vfat {
4         vfat {
5                 files = {
6                         "zImage",
7                         "sun8i-h3-orangepi-pc.dtb",
8                         "boot.scr"
9                 }
10         }
11         size = 10M
14 image sdcard.img {
15         hdimage {
16         }
18         partition u-boot {
19                 in-partition-table = "no"
20                 image = "u-boot-sunxi-with-spl.bin"
21                 offset = 8192
22                 size = 1040384 # 1MB - 8192
23         }
25         partition boot {
26                 partition-type = 0xC
27                 bootable = "true"
28                 image = "boot.vfat"
29         }
31         partition rootfs {
32                 partition-type = 0x83
33                 image = "rootfs.ext4"
34                 size = 512M
35         }