Files
SDK_SG200x_V2/buildroot-2021.05/board/altera/socrates_cyclone5/genimage.cfg
carbon 390654aa5c add buildroot-2021.05
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>
2024-05-31 19:11:52 +08:00

59 lines
784 B
INI

image boot.vfat {
vfat {
files = {
"zImage",
"socfpga_cyclone5_socrates.dtb"
}
}
size = 8M
}
image uboot.img {
hdimage {
partition-table = "no"
}
partition spl {
in-partition-table = "no"
image = "u-boot-spl.bin.crc"
offset = 0
size = 64k
}
partition uboot-full {
in-partition-table = "no"
image = "u-boot.img"
offset = 256k
}
size = 1M
}
image sdcard.img {
hdimage {
}
partition uboot-env {
in-partition-table = "no"
image = "uboot-env.bin"
offset = 17408 # 512 * 34 -> just after gpt
}
partition boot {
partition-type = 0xc
bootable = "true"
image = "boot.vfat"
}
partition uboot {
partition-type = 0xa2
image = "uboot.img"
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext2"
size = 500M
}
}