stx-config: add extra command to bring sriov pf device up
[pti/rtp.git] / meta-stx / recipes-core / stx-fault / fm-mgr.inc
1 #
2 ## Copyright (C) 2019 Wind River Systems, Inc.
3 #
4 #  Licensed under the Apache License, Version 2.0 (the "License");
5 #  you may not use this file except in compliance with the License.
6 #  You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #  Unless required by applicable law or agreed to in writing, software
11 #  distributed under the License is distributed on an "AS IS" BASIS,
12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #  See the License for the specific language governing permissions and
14 #  limitations under the License.
15
16 PACKAGES += " fm-mgr"
17
18 ###################
19 # DEPENDS = " fm-common"
20 ###################
21
22 do_compile_append() {
23         cd ${S}/fm-mgr/sources/
24         oe_runmake -e \
25                 LDFLAGS="${LDFLAGS} -L${S}/fm-common/sources" \
26                 CCFLAGS="${CXXFLAGS}" \
27                 INCLUDES="-I. -I${S}/fm-common/sources" \
28                 build
29 }
30
31 do_install_append () {
32         cd ${S}/fm-mgr/sources/
33         install -d -m0755 ${D}/${systemd_system_unitdir} 
34         oe_runmake -e DESTDIR=${D} BINDIR=${bindir} \
35                 LIBDIR=${libdir} UNITDIR=${systemd_system_unitdir} \
36                         SYSCONFDIR=${sysconfdir} \
37                         install
38         rm -rf ${D}/usr/lib/systemd
39
40         # fix the path for init scripts
41         sed -i -e 's|rc.d/||' ${D}/${systemd_system_unitdir}/*.service
42
43         # fix the path for binaries
44         sed -i -e 's|/usr/local/bin/|${bindir}/|' ${D}${sysconfdir}/init.d/fminit
45 }
46
47 FILES_fm-mgr = "  \
48         ${bindir}/fmManager \
49         ${systemd_system_unitdir}/fminit.service \
50         ${sysconfdir}/init.d/fminit \
51         ${sysconfdir}/logrotate.d/fm.logrotate \
52         "
53
54 inherit useradd
55
56 USERADD_PACKAGES = "fm-mgr"
57 USERADD_PARAM_fm-mgr = "-r -g fm -G snmpd -u 195 -d /var/lib/fm -s /sbin/nologin -c 'fm-mgr' fm"
58 GROUPADD_PARAM_fm-mgr = "-r -g 195 fm"
59
60 RDEPENDS_fm-mgr += "net-snmp-server-snmpd"