aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-09-15 01:37:27 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-09-15 01:39:06 +0700
commitfd4654e1b8ccf364e604c93d2fdbd21a076dc6ea (patch)
tree9916b0ad67a155e541cd3b3d6653ae3a3a210b4e /src
parente97834f2db29c1ea58644fc86b68342699351216 (diff)
osmo-bts-{oc2g,lc15}: signal CBCH support to BSC
The model specific code seems to have everything needed for CBCH. Change-Id: I6b4d82223dc0bdcd94cd1269bfb02047cbebe480
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-lc15/main.c1
-rw-r--r--src/osmo-bts-oc2g/main.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/osmo-bts-lc15/main.c b/src/osmo-bts-lc15/main.c
index 6c0e73de..bcd526a5 100644
--- a/src/osmo-bts-lc15/main.c
+++ b/src/osmo-bts-lc15/main.c
@@ -102,6 +102,7 @@ int bts_model_init(struct gsm_bts *bts)
/* order alphabetically */
osmo_bts_set_feature(bts->features, BTS_FEAT_AGCH_PCH_PROP);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_CBCH);
osmo_bts_set_feature(bts->features, BTS_FEAT_EGPRS);
osmo_bts_set_feature(bts->features, BTS_FEAT_GPRS);
osmo_bts_set_feature(bts->features, BTS_FEAT_OML_ALERTS);
diff --git a/src/osmo-bts-oc2g/main.c b/src/osmo-bts-oc2g/main.c
index 9918795f..e1848146 100644
--- a/src/osmo-bts-oc2g/main.c
+++ b/src/osmo-bts-oc2g/main.c
@@ -103,6 +103,7 @@ int bts_model_init(struct gsm_bts *bts)
/* order alphabetically */
osmo_bts_set_feature(bts->features, BTS_FEAT_AGCH_PCH_PROP);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_CBCH);
osmo_bts_set_feature(bts->features, BTS_FEAT_EGPRS);
osmo_bts_set_feature(bts->features, BTS_FEAT_GPRS);
osmo_bts_set_feature(bts->features, BTS_FEAT_OML_ALERTS);