aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/bsc_version.c
AgeCommit message (Collapse)AuthorFilesLines
2011-03-03re-structure the OpenBSC directory layoutHarald Welte1-30/+0
The new structure divides the code into a number of libraries for the BSC core functionality, MSC core functionality, Abis transport, TRAU and other bits. This doesn't introduce any functional code change but simply moves around files and alters Makefile.am accordingly. Next step would be to disentangle a lot of the inter-library dependencies and make the individual bits of code more independent.
2011-01-01License change: We are now AGPLv3+ instead of GPLv2+Harald Welte1-9/+8
The reason for this is quite simple: We want to make sure anyone running a customized version of OpenBSC to operate a network will have to release all custom modifiations to the source code.
2010-09-11vty: Use \r\n in the copyright messagesHolger Hans Peter Freyther1-6/+6
We should use VTY_NEWLINE but our strings are static, always use \r\n as unix terminals can handle that as well.
2010-05-16VTY: pass program name, version and copyright to vty_init()Harald Welte1-1/+0
This enables us to make the VTY completely independent of any compile-time program-specific information, i.e. one step closer to using VTY as a shared library from multiple programs.
2010-03-24Move the version/copyright string to a separate fileHolger Hans Peter Freyther1-0/+32
It didn't really belong into the bsc_init.c... now we could even easily autogenerate this file.