summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-phosphor/fru/default-fru.bb
blob: a8dd35487b44c58d9d2d1c11e2f2691a01624a6b (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
SUMMARY = "Default Fru"
DESCRIPTION = "Builds a default FRU file at runtime based on board ID"

inherit obmc-phosphor-systemd
inherit cmake

SRC_URI = "file://checkFru.sh;subdir=${BP} \
           file://decodeBoardID.sh;subdir=${BP} \
           file://mkfru.cpp;subdir=${BP} \
           file://CMakeLists.txt;subdir=${BP} \
           "
SYSTEMD_SERVICE:${PN} = "SetBaseboardFru.service"

LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "\
    file://${INTELBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658 \
    file://mkfru.cpp;beginline=2;endline=14;md5=c451359f18a13ee69602afce1588c01a \
    "

RDEPENDS:${PN} = "bash"

do_install:append() {
    install -d ${D}${bindir}
    install -m 0755 ${S}/checkFru.sh ${D}${bindir}/checkFru.sh
    install -m 0755 ${S}/decodeBoardID.sh ${D}${bindir}/decodeBoardID.sh
}