aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-virtual/main.c
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2022-04-21 15:47:15 +0200
committerOliver Smith <osmith@sysmocom.de>2022-04-21 17:36:53 +0200
commit0f075a1e2ddba122d2ab01b8d04cfc05c220f0cd (patch)
tree6b853ddc2f60643270f9eb1750d59154f965902e /src/osmo-bts-virtual/main.c
parent7d2193b46741b3a185488fee3b77639e2572b094 (diff)
model_init: set BTS_FEAT_PAGINATION_COORDINATION
According to osmo-bsc I0e80ca5afc06737273b6699bde6e325e454b57f6, the PAGING_COORDINATION feature should be well supported in osmo-bts. Adjust the bts_model_init functions to report this to the BSC, so it properly sets this in SI13 and so we can avoid this notice in the log: Get Attributes Response: reported feature 'PAGING_COORDINATION' is not supported, while we thought it is. Related: SYS#5922, OS#5538 Change-Id: Ib06829501f4221a7f7b0344ec7991ceba74e7641
Diffstat (limited to 'src/osmo-bts-virtual/main.c')
-rw-r--r--src/osmo-bts-virtual/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/osmo-bts-virtual/main.c b/src/osmo-bts-virtual/main.c
index 20b480f4..d4570d06 100644
--- a/src/osmo-bts-virtual/main.c
+++ b/src/osmo-bts-virtual/main.c
@@ -65,6 +65,7 @@ int bts_model_init(struct gsm_bts *bts)
/* order alphabetically */
osmo_bts_set_feature(bts->features, BTS_FEAT_CBCH);
osmo_bts_set_feature(bts->features, BTS_FEAT_OML_ALERTS);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_PAGING_COORDINATION);
osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_F_AMR);
osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_F_EFR);
osmo_bts_set_feature(bts->features, BTS_FEAT_SPEECH_F_V1);