hello my 2nd bs-11(bts 1) has a defective trx0, so no c0 can be created. lets have a look at gsm_bts_trx_alloc in gsm_data.c: i changed trx->bts = bts; trx->nr = bts->num_trx++; trx->nm_state.administrative = NM_STATE_UNLOCKED;
to trx->bts = bts; if(bts->nr == 1) {trx->nr = 1;} else {trx->nr = bts->num_trx++;} trx->nm_state.administrative = NM_STATE_UNLOCKED;
in gsm_bts_alloc, the primary trx should be created then, in the case of bts 1 starting at trx1, since trx0 dont exist
unfortunately, i get a general protection fault :-(
hints very velcome!
T.