aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-05-12 05:34:31 +0200
committerHarald Welte <laforge@osmocom.org>2023-05-12 05:34:31 +0200
commit9501407980a9e01a33a35499087c6caa407402ad (patch)
tree9a9296a012b51342f28934313d1c18716ae43cf3
parent206afb8cd0b56646dc14a8fc52ced932ad136408 (diff)
omldummy: Claim to support VBS + VGCS towards BSClaforge/asci
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;
}