diff --git a/recipes-sysmobts/osmo-pcu/osmo-pcu_git.bb b/recipes-sysmobts/osmo-pcu/osmo-pcu_git.bb index 80cc318..ea23a00 100644 --- a/recipes-sysmobts/osmo-pcu/osmo-pcu_git.bb +++ b/recipes-sysmobts/osmo-pcu/osmo-pcu_git.bb @@ -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}"