summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-bsp/recipes-bsp/bootbin/machine-xilinx-zynq.inc
blob: b8d75c4f0be1f896bd208cb6ab6540ea9c3101c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#specify BIF partition attributes required for BOOT.bin
BIF_PARTITION_ATTR ?= "fsbl bitstream u-boot"

#specify BIF partition attributes for FSBL
#bootloader is FSBL. Location where FSBL binary is present and dependency to build FSBL
BIF_PARTITION_ATTR[fsbl] ?= "bootloader"
BIF_PARTITION_IMAGE[fsbl] ?= "${DEPLOY_DIR_IMAGE}/fsbl-${MACHINE}.elf"
BIF_PARTITION_DEPENDS[fsbl] ?= "virtual/fsbl:do_deploy"

#specify BIF partition attributes for u-boot
#Location where u-boot binary is present
BIF_PARTITION_IMAGE[u-boot] ?= "${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.elf"
BIF_PARTITION_DEPENDS[u-boot] ?= "virtual/bootloader:do_deploy"

# enable bitstream-Note this is not enabled by default (missing in BIF_PARTITION_ATTR)
BIF_PARTITION_IMAGE[bitstream] ?= "${DEPLOY_DIR_IMAGE}/download-${MACHINE}.bit"
BIF_PARTITION_DEPENDS[bitstream] ?= "virtual/bitstream:do_deploy"