aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-05-12 05:34:31 +0200
committerlaforge <laforge@osmocom.org>2023-07-21 10:52:07 +0000
commitfa90ff3e6798c952e09fe67e0d77b9518d2da616 (patch)
treec80bd2839feb4899ae5dd03a285f378a8a48cdc2
parent15330e23681e67f6e30d3816666cbc17be3f2ec0 (diff)
omldummy: Claim to support VBS + VGCS towards BSC
This tells our TTCN3 BSC tests to perform VBS/VGCS related procedures on RSL. Change-Id: I9ed1b20985d2ce3be31942d3e9df5cad513a0bfd Related: OS#5778, OS#5779
-rw-r--r--src/osmo-bts-omldummy/bts_model.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osmo-bts-omldummy/bts_model.c b/src/osmo-bts-omldummy/bts_model.c
index eea771d5..29af88c8 100644
--- a/src/osmo-bts-omldummy/bts_model.c
+++ b/src/osmo-bts-omldummy/bts_model.c
@@ -176,6 +176,8 @@ int bts_model_init(struct gsm_bts *bts)
osmo_bts_set_feature(bts->features, BTS_FEAT_BCCH_POWER_RED);
osmo_bts_set_feature(bts->features, BTS_FEAT_CBCH);
osmo_bts_set_feature(bts->features, BTS_FEAT_HOPPING);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_VBS);
+ osmo_bts_set_feature(bts->features, BTS_FEAT_VGCS);
return 0;
}