From d6ac211bce9f76376ed10745647ea0f759e30154 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 15 Jun 2017 12:04:48 +0200 Subject: [PATCH] Install BTS-specific -mgr.cf Use *-mgr.cfg file which matches the BTS model. Related: SYS#3686 --- recipes-sysmobts/osmo-bts/osmo-bts_git.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes-sysmobts/osmo-bts/osmo-bts_git.bb b/recipes-sysmobts/osmo-bts/osmo-bts_git.bb index d0c8211..cbeb3a9 100644 --- a/recipes-sysmobts/osmo-bts/osmo-bts_git.bb +++ b/recipes-sysmobts/osmo-bts/osmo-bts_git.bb @@ -49,7 +49,6 @@ do_install_append() { # Future sysmobts-mgr handling install -d ${D}${systemd_unitdir}/system/multi-user.target.wants/ - install -m 0660 ${S}/doc/examples/sysmobts-mgr.cfg ${D}${sysconfdir}/osmocom install -m 0644 ${S}/contrib/sysmobts-mgr.service ${D}${systemd_unitdir}/system/ ln -sf ../sysmobts-mgr.service ${D}${systemd_unitdir}/system/multi-user.target.wants/ } @@ -61,6 +60,7 @@ do_install_append_sysmobts-v2() { # Install systemd and enable on sysinit install -d ${D}${systemd_unitdir}/system/multi-user.target.wants/ + install -m 0660 ${S}/doc/examples/sysmo/sysmobts-mgr.cfg ${D}${sysconfdir}/osmocom install -m 0644 ${S}/contrib/sysmobts.service ${D}${systemd_unitdir}/system/ ln -sf ../sysmobts.service ${D}${systemd_unitdir}/system/multi-user.target.wants/ } @@ -74,6 +74,7 @@ do_install_append_sysmobts2100() { # Install systemd and enable on sysinit install -d ${D}${systemd_unitdir}/system/multi-user.target.wants/ + install -m 0660 ${S}/doc/examples/litecell15/lc15bts-mgr.cfg ${D}${sysconfdir}/osmocom/ install -m 0644 ${WORKDIR}/osmo-bts-lc15.service ${D}${systemd_unitdir}/system/ ln -sf ../osmo-bts-lc15.service ${D}${systemd_unitdir}/system/multi-user.target.wants/ }