b10d29ea7f
- configs/acmesystems_aria_g25_128mb_defconfig, configs/acmesystems_aria_g25_256mb_defconfig : update default configuration files for both 128MB and 256MB version - board/acmesystems/aria-g25/genimage.cfg board/acmesystems/aria-g25/post-image.sh : add support for genimage in order to build sdcard.img - board/acmesystems/aria-g25/readme.txt : update documentation for Aria G25 and add notes about how to build sdcard.img Signed-off-by: Biagio Montaruli <biagio.hkr@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
36 lines
496 B
INI
36 lines
496 B
INI
# Minimal SD card image for the Acmesystems Aria G25
|
|
|
|
image boot.vfat {
|
|
vfat {
|
|
file zImage {
|
|
image = "zImage"
|
|
}
|
|
|
|
file at91-ariag25.dtb {
|
|
image = "at91-ariag25.dtb"
|
|
}
|
|
|
|
file boot.bin {
|
|
image = "at91sam9x5_aria-sdcardboot-linux-zimage-dt-3.8.6.bin"
|
|
}
|
|
}
|
|
size = 16M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|