commit 69f79f2a2ee1417e19c1ead2c9226e11753c06cb Author: Peter Korsgaard <peter@korsgaard.com> Date: Sun Jun 6 23:21:08 2021 +0200 Update for 2021.05 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
36 lines
511 B
INI
36 lines
511 B
INI
# Minimal SD card image for the Acmesystems Arietta G25
|
|
|
|
image boot.vfat {
|
|
vfat {
|
|
file zImage {
|
|
image = "zImage"
|
|
}
|
|
|
|
file acme-arietta.dtb {
|
|
image = "at91-ariettag25.dtb"
|
|
}
|
|
|
|
file boot.bin {
|
|
image = "at91sam9x5_arietta-sdcardboot-linux-zimage-dt-3.8.13.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
|
|
}
|
|
}
|