aboutsummaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/recipes-bsp/base-pdi/base-pdi_1.0.bb
blob: deb8bb3d2bb8c9bcc6d39f2171281ddf8c07bcd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
DESCRIPTION = "Recipe to deploy base pdi"

LICENSE = "CLOSED"

PROVIDES = "virtual/base-pdi"

COMPATIBLE_MACHINE = "^$"
COMPATIBLE_MACHINE:microblaze = ".*"
COMPATIBLE_MACHINE:versal = ".*"

PACKAGE_ARCH ?= "${MACHINE_ARCH}"

do_compile[noexec] = "1"

PDI_PATH ?= ""
SRC_URI += "${@['file://'+d.getVar('PDI_PATH'),''][d.getVar('PDI_PATH') == '']}"

python() {
    if d.getVar('PDI_SKIP_CHECK') != "1" and not d.getVar('PDI_PATH'):
        raise bb.parse.SkipRecipe("PDI_PATH is not configured with the base design pdi")
}

#base install will just take from PDI_PATH variable
#will need to bbappend to this in meta-xilinx-tools to use xsct to extract pdi from xsa and install
do_install() {

    if [ -f ${WORKDIR}/${PDI_PATH} ];then
        install -d ${D}/boot
        install -m 0644 ${WORKDIR}/${PDI_PATH} ${D}/boot/base-design.pdi
    else
        bbfatal "No base pdi supplied"
    fi
}
SYSROOT_DIRS += "/boot"

FILES:${PN} += "/boot/*"