aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-12-24 13:39:34 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-24 13:39:34 +0100
commit19a3f0b12092598fd590c6c3fb8606dfffe332cd (patch)
treefce54915f7217b2f90b78b0e49fe4bfbfd4e1991
parentfb33957405ea342ef81d307e1da983cedc5f1960 (diff)
print ARFCN, LAC and CID when bootstrapping RSL
-rw-r--r--openbsc/src/bsc_init.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/openbsc/src/bsc_init.c b/openbsc/src/bsc_init.c
index 58cdafe7b..cc4a75b5b 100644
--- a/openbsc/src/bsc_init.c
+++ b/openbsc/src/bsc_init.c
@@ -754,9 +754,10 @@ static void patch_nm_tables(struct gsm_bts *bts)
static void bootstrap_rsl(struct gsm_bts_trx *trx)
{
LOGP(DRSL, LOGL_NOTICE, "bootstrapping RSL for BTS/TRX (%u/%u) "
- "using MCC=%u MNC=%u BSIC=%u TSC=%u\n",
- trx->bts->nr, trx->nr, bsc_gsmnet->country_code,
- bsc_gsmnet->network_code, trx->bts->bsic, trx->bts->tsc);
+ "on ARFCN %u using MCC=%u MNC=%u LAC=%u CID=%u BSIC=%u TSC=%u\n",
+ trx->bts->nr, trx->nr, trx->arfcn, bsc_gsmnet->country_code,
+ bsc_gsmnet->network_code, trx->bts->location_area_code,
+ trx->bts->cell_identity, trx->bts->bsic, trx->bts->tsc);
set_system_infos(trx);
}