sngrep: fix error if gnutls and openssl are both enabled
[buildroot-gz.git] / board / linksprite / pcduino / genimage.cfg
blob9cbc383d44319753f4a5fb033915d1c8916b0e1d
2 # Minimal SD card image for the pcDuino
5 image boot.vfat {
6         vfat {
7                 files = {
8                         "zImage",
9                         "sun4i-a10-pcduino.dtb",
10                         "boot.scr"
11                 }
12         }
13         size = 16M
17 # Note: u-boot environment is stored between u-boot and boot partitions
20 image sdcard.img {
21         hdimage {
22         }
24         partition u-boot {
25                 in-partition-table = "no"
26                 image = "u-boot-sunxi-with-spl.bin"
27                 offset = 8192
28                 size = 1040384 # 1MB - 8192
29         }
31         partition boot {
32                 partition-type = 0xC
33                 bootable = "true"
34                 image = "boot.vfat"
35                 offset = 1M
36         }
38         partition rootfs {
39                 partition-type = 0x83
40                 image = "rootfs.ext4"
41         }