board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / board / nanopi-neo / genimage.cfg
blobad43d310496c9dcfc727c407d9ba2e654c6588a9
1 image boot.vfat {
2         vfat {
3                 files = {
4                         "zImage",
5                         "sun8i-h3-nanopi-neo.dtb",
6                         "boot.scr"
7                 }
8         }
9         size = 10M
12 image sdcard.img {
13         hdimage {
14         }
16         partition u-boot {
17                 in-partition-table = "no"
18                 image = "u-boot-sunxi-with-spl.bin"
19                 offset = 8192
20                 size = 1040384 # 1MB - 8192
21         }
23         partition boot {
24                 partition-type = 0xC
25                 bootable = "true"
26                 image = "boot.vfat"
27         }
29         partition rootfs {
30                 partition-type = 0x83
31                 image = "rootfs.ext4"
32                 size = 32M
33         }