Files
yoctor-layers/meta-st/meta-st-openstlinux/recipes-extended/stm32-ddr-tools/stm32-ddr-tools_1.0.bb
2024-07-11 14:16:35 +02:00

17 lines
439 B
BlitzBasic

SUMMARY = "STM32 tool to convert the 'perf' tool counters into understandable MB/s"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
RDEPENDS:${PN} += " python3-core "
SRC_URI += " \
file://stm32_ddr_pmu.py \
"
do_install() {
install -d ${D}/${bindir}
install -m 0755 ${WORKDIR}/stm32_ddr_pmu.py ${D}/${bindir}
}
FILES:${PN} = "${bindir}/stm32_ddr_pmu.py"