Appending New Partitions to Existing PDI - 2021.2 English

Vitis Unified Software Platform Documentation: Embedded Software Development (UG1400)

Document ID
UG1400
Release Date
2021-12-15
Version
2021.2 English

This example shows how to append new partitions to an existing PDI.

  1. Take a Vivado generated PDI (base.pdi).
  2. Create a new PDI by appending the dtb, uboot, and bl31 applications.
new_bif:
{
	image
	{
		{ type = bootimage, file = base.pdi }
	}
	image
	{
		name = apu_ss, id = 0x1c000000
		{ load = 0x1000, file = system.dtb }
          { exception_level = el-2, file = u-boot.elf }
          { core = a72-0, exception_level = el-3, trustzone, file = bl31.elf }
	}
}