osmo-pcu: add systemd support

The systemd-service-file was added to sysmocom/master branch so use that.
This commit is contained in:
Henning Heinold 2013-12-17 19:42:58 +01:00 committed by Holger Hans Peter Freyther
parent 7b24b69422
commit d6572a4b3c
1 changed files with 11 additions and 3 deletions

View File

@ -2,9 +2,9 @@ DESCRIPTION = "Osmocom PCU for sysmoBTS"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM="file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "git://git.osmocom.org/osmo-pcu.git;protocol=git;branch=jolly_merge"
SRCREV = "72febb9d7492c95bf428f150fb409ad18c4fcf03"
PV = "0.2+git${SRCPV}"
SRC_URI = "git://git.osmocom.org/osmo-pcu.git;protocol=git;branch=sysmocom/master"
SRCREV = "c92b964e2dec76397329e9005ca277466867cbc6"
PV = "0.3+git${SRCPV}"
PR = "r2.${META_TELEPHONY_OSMO_INC}"
S = "${WORKDIR}/git"
@ -21,3 +21,11 @@ inherit autotools_stage
inherit femtobts_api
CPPFLAGS += " ${BTS_HW_VERSION} "
do_install_append() {
# Install systemd and enable on sysinit
install -d ${D}${systemd_unitdir}/system/multi-user.target.wants/
install -m 0644 ${S}/contrib/sysmopcu.service ${D}${systemd_unitdir}/system/
ln -sf ../sysmopcu.service ${D}${systemd_unitdir}/system/multi-user.target.wants/
}
FILES_${PN} += "${systemd_unitdir}"