aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/bsc_init.c
AgeCommit message (Collapse)AuthorFilesLines
2009-10-26Fix segfault, use trx->bts rather than bts in patch_nm_tables()Harald Welte1-1/+1
2009-10-24ip.access: Use Channel Combination from config fileHarald Welte1-4/+4
bsc_init.c still contained a hard-coded channel configuration, i.e. CCCH_combined on TS0 of C0, and TCH/F on all other channels. Now it correctly uses the value as specified in the config file.
2009-10-22Fix spelling of defaultHolger Hans Peter Freyther1-1/+1
2009-10-20[nanoBTS] move nanoBTS initialization completely into state event handlerHarald Welte1-66/+75
2009-10-20ip.access: use correct stream identifier when connecting RSLHarald Welte1-1/+1
2009-10-19[abis_nm] introduce and use abis_nm_ipaccess_rsl_connect()Harald Welte1-8/+1
2009-10-19ip.access / multi-TRX: correctly identify TRX number on SW ACT REPHarald Welte1-1/+5
2009-10-19ip.access maximum output power depends on GSM bandHarald Welte1-1/+15
2009-10-08[bsc_init] use new NM_AVSTATE_* enum instead of hard-coded numbersHarald Welte1-2/+2
2009-10-05[ipaccess] Add nanoBTS 1900 supportMike Haben1-11/+13
Add support for 1900 nanoBTS by using unified bts_type GSM_BTS_TYPE_NANOBTS for 900, 1800 and 1900 versions. Reduce the nanoBTS enum values to one and derive the version from the user supplied band. In the future we might want to do auto band detection. The configuration file needs to be changed to refer to nanobts instead of nanobts900/nanobts1800. Signed-off-by: Mike Haben <michael.haben@btinternet.com> Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
2009-09-28[bsc] Store the cell_identity in gsm_bts and set it on the SI3 and SI6Holger Hans Peter Freyther1-0/+4
Transfering the cell_identity from BSC to MSC is required for the on-waves.com support. Allow to set the cell_identity in the cfg file and patch the system information tables to set it.
2009-08-17[bsc] Remove HAR feature to advertize neighbor cellsHolger Hans Peter Freyther1-13/+0
Do not advertize to broadcast on a different frequency, this was only useful for the HAR2009. The frequency list of the cell probably needs to migrate into the vty config file. Revert of ee4410a4f312d927dc8b4901c71c52436c18ca4a
2009-08-17[bsc_init] Create a bsc_init.c that can be used for setting up hings.Holger Hans Peter Freyther1-0/+1064
Share the initialization and bootstraping of the network by moving the code to a new file and making boostrap_network and shutdown_net external. Cleanup the header list after the move and remove trailing whitespace.