aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/vty.h
AgeCommit message (Collapse)AuthorFilesLines
2019-03-27vty: add function gsmnet_from_vty() to vty.hPhilipp Maier1-0/+2
The function gsmnet_from_vty() is used in oc2gbts_vty.c, but it is not declared in vty.h. Lets add the declaration to vty.h, so that gsmnet_from_vty() can be used properly by other modules. Change-Id: I8cf63c6fabdb1f2dc67ca8193704ce4d1d4882d9
2016-02-15move auto-band configuration commands to common/vty.cHarald Welte1-0/+3
It remains up to the individual BTS hardware models to decide whether or not to register those commands (depending on whether they support the feature) via cfg_bts_auto_band_cmd / cfg_bts_no_auto_band_cmd
2016-02-15introduce + use new generic vty_get_phy_instance()Harald Welte1-0/+2
this function is intended to be used by VTY commands that need to resolve a given PHY interface.
2016-02-15Introduce new phy_link and phy_instance abstractionHarald Welte1-1/+6
This way we can model a flexible mapping between any number of PHYs, each having multiple instances, and then map BTSs with TRXx on top of those PHYs.
2016-01-04fix large amount of compiler warnings in common and sysmobts codeHarald Welte1-1/+1
2015-09-22Move gsmtap VTY commands from osmo-bts-sysmo to common partAndreas Eversberg1-1/+1
2012-07-25vty: Remove TS_NODE and LCHAN_NODE as they are not used.Holger Hans Peter Freyther1-2/+0
2011-09-04add minimal configuration file supportHarald Welte1-0/+2
this config file allows configuration of unit id, oml ip, and local rtp bind IP.
2011-06-27re-work original osmo-bts with support for sysmocom femtobtsHarald Welte1-0/+22
This code re-works osmo-bts to add support for the upcoming sysmocom BTS. It also tries to add some level of abstraction between the generic part of a BTS (A-bis, RSL, OML, data structures, paging scheduling, BCCH/AGCH scheduling, etc.) and the actual hardware-specific bits. The hardware-specific bits are currently only implemented for the sysmocom femtobts, but should be (re-)added for osmocom-bb, as well as a virtual BTS for simulation purpose later. The sysmocom bts specific parts require hardware-specific header files which are (at least currently) not publicly distributed.