summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-utilities/peci-hwmon-test/peci-hwmon-test.bb
blob: b3b4096a615e5aa72ed9b81dbce538cd57ba78b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SUMMARY = "PECI hwmon test tool"
DESCRIPTION = "command line python tool for testing PECI hwmon"

SRC_URI = "\
    file://peci-hwmon-test.py \
    "
LICENSE = "CLOSED"

RDEPENDS_${PN} += "python"

S = "${WORKDIR}"

do_compile () {
}

do_install () {
    install -d ${D}/${bindir}
    install -m 0755 ${WORKDIR}/peci-hwmon-test.py ${D}/${bindir}
}