2017-08-02 20:03:02 +02:00
|
|
|
image boot.vfat {
|
|
|
|
vfat {
|
|
|
|
files = {
|
|
|
|
"zImage",
|
|
|
|
"socfpga_cyclone5_socrates.dtb"
|
|
|
|
}
|
|
|
|
}
|
2021-11-07 03:01:02 +01:00
|
|
|
|
2017-08-02 20:03:02 +02:00
|
|
|
size = 8M
|
|
|
|
}
|
|
|
|
|
|
|
|
image uboot.img {
|
|
|
|
hdimage {
|
|
|
|
partition-table = "no"
|
|
|
|
}
|
|
|
|
|
|
|
|
partition spl {
|
|
|
|
in-partition-table = "no"
|
|
|
|
image = "u-boot-spl.bin.crc"
|
|
|
|
offset = 0
|
2021-11-07 03:01:02 +01:00
|
|
|
size = 64K
|
2017-08-02 20:03:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
partition uboot-full {
|
|
|
|
in-partition-table = "no"
|
|
|
|
image = "u-boot.img"
|
2021-11-09 11:18:37 +01:00
|
|
|
offset = 256K
|
2017-08-02 20:03:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size = 1M
|
|
|
|
}
|
|
|
|
|
|
|
|
image sdcard.img {
|
|
|
|
hdimage {
|
|
|
|
}
|
|
|
|
|
|
|
|
partition uboot-env {
|
|
|
|
in-partition-table = "no"
|
|
|
|
image = "uboot-env.bin"
|
2021-11-07 03:01:02 +01:00
|
|
|
offset = 17K # 512 * 34 -> just after gpt
|
2017-08-02 20:03:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|