]> Git Repo - buildroot-mgba.git/blob - board/acmesystems/aria-g25/genimage.cfg
configs/acmesystems_aria_g25: update and add genimage handling
[buildroot-mgba.git] / board / acmesystems / aria-g25 / genimage.cfg
1 # Minimal SD card image for the Acmesystems Aria G25
2
3 image boot.vfat {
4         vfat {
5                 file zImage {
6                         image = "zImage"
7                 }
8
9                 file at91-ariag25.dtb {
10                         image = "at91-ariag25.dtb"
11                 }
12
13                 file boot.bin {
14                         image = "at91sam9x5_aria-sdcardboot-linux-zimage-dt-3.8.6.bin"
15                 }
16         }
17         size = 16M
18 }
19
20 image sdcard.img {
21         hdimage {
22         }
23
24         partition boot {
25                 partition-type = 0xC
26                 bootable = "true"
27                 image = "boot.vfat"
28         }
29
30         partition rootfs {
31                 partition-type = 0x83
32                 image = "rootfs.ext4"
33                 size = 512M
34         }
35 }
This page took 0.028552 seconds and 4 git commands to generate.