From aa67f950273195c723d982ec2ce07e9f62b0f781 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 27 Nov 2020 08:22:21 +0100 Subject: [PATCH] bts: allow configuring ARFCN and BSIC: add to schema resources.conf is already allowed to set these, but in order to let scenarios and suites modify these values, they need to be in the schema. Change-Id: I8e0583e9208d563c66b0bdc9f25b1b74f92403c2 --- src/osmo_gsm_tester/obj/bts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osmo_gsm_tester/obj/bts.py b/src/osmo_gsm_tester/obj/bts.py index 5b43642a..76a68757 100644 --- a/src/osmo_gsm_tester/obj/bts.py +++ b/src/osmo_gsm_tester/obj/bts.py @@ -35,6 +35,7 @@ def on_register_schemas(): 'channel_allocator': schema.CHAN_ALLOCATOR, 'gprs_mode': schema.GPRS_MODE, 'emergency_calls_allowed': schema.BOOL_STR, + 'base_station_id_code': schema.UINT, 'num_trx': schema.UINT, 'max_trx': schema.UINT, 'trx_list[].addr': schema.IPV4, @@ -46,6 +47,7 @@ def on_register_schemas(): 'trx_list[].power_supply.type': schema.STR, 'trx_list[].power_supply.device': schema.STR, 'trx_list[].power_supply.port': schema.STR, + 'trx_list[].arfcn': schema.UINT, } schema.register_resource_schema('bts', resource_schema)