blob: d371da4dbb686d628abb17056e412617c187c161 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "PMU Firmware"
inherit xlnx-embeddedsw deploy
COMPATIBLE_HOST = "microblaze.*-elf"
COMPATIBLE_MACHINE = "none"
COMPATIBLE_MACHINE:zynqmp = ".*"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}/git"
# This is the default in most BSPs. A MACHINE.conf can override this!
PMU_FIRMWARE_IMAGE_NAME ??= "pmu-firmware-${MACHINE}"
inherit image-artifact-names
PMU_FIRMWARE_BASE_NAME ?= "${PMU_FIRMWARE_IMAGE_NAME}-${PKGE}-${PKGV}-${PKGR}-${MACHINE}${IMAGE_VERSION_SUFFIX}"
ESW_COMPONENT ??= "executable.elf"
# Disable buildpaths QA check warnings.
INSANE_SKIP:${PN} += "buildpaths"
|