Hi, list!
I'd like to try to compile OpenBSC with the A-over-IP in order to connect it to a real MSC. I found this document:
http://openbsc.osmocom.org/trac/wiki/OpenBSCWithSCCP
But when I try to get the branch I get an error:
$ git checkout -b on-waves/bsc-master origin/bsc-master git checkout: updating paths is incompatible with switching branches/forcing Did you intend to checkout 'origin/bsc-master' which can not be resolved as commit?
Is now this project in another branch? Can someone say me, what I have to do to compile it?
Thanks a lot!
On 12/08/2010 03:26 PM, Luca Bertoncello wrote:
Hi, list!
Is now this project in another branch? Can someone say me, what I have to do to compile it?
Well, you should be able to answer this yourself. You can type git branch to see your local branches and git branch -a to see all branches. Also the asymmetry of on-waves/bsc-master and origin/bsc-master looks suspicious..
Besides that OpenBSC master should come with a working BSC that can be hooked to a MSC. What are you going to try with this?
Am Wed, 08 Dec 2010 16:12:53 +0100 schrieb Holger Hans Peter Freyther holger@freyther.de:
you should be able to answer this yourself. You can type git branch
If I could, I don't ask... :D
to see your local branches and git branch -a to see all branches. Also the asymmetry of on-waves/bsc-master and origin/bsc-master looks suspicious..
OK, I tried to switch to another branch with:
git checkout -b on-waves/bsc-master origin/on-waves/bsc-master
I can just hope, that this is the right branch... Unfortunately, I have another problem... When I run the configure file I get this error:
checking for LIBOSMOSCCP... configure: error: Package requirements (libosmo-sccp >= 0.0.3) were not met:
No package 'libosmo-sccp' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.
I try to search for this library in the libosmocore repository, and to check if there is another branch in this repository, too, but I didn't found anything.
Could someone say me, where can I found this library?
Besides that OpenBSC master should come with a working BSC that can be hooked to a MSC. What are you going to try with this?
As I said, I have a real MSC and I'd like to have OpenBSC just running as BSC and speaking with this MSC. Is it not, what this branch does?
Thanks
Hi Luca,
On Thu, Dec 09, 2010 at 08:50:23AM +0100, Luca Bertoncello wrote:
you should be able to answer this yourself. You can type git branch
If I could, I don't ask... :D
well, we seem to expect general familiarity in working with git... most Free Software developers are used to it by now.
No package 'libosmo-sccp' found
Could someone say me, where can I found this library?
All osmocom projects (except openbsc, for historical reasons) are available from http://git.osmocom.org/
Besides that OpenBSC master should come with a working BSC that can be hooked to a MSC. What are you going to try with this?
As I said, I have a real MSC and I'd like to have OpenBSC just running as BSC and speaking with this MSC. Is it not, what this branch does?
This is what osmo-bsc does, whether or not you use the bsc-master or the master branch.
Am Thu, 9 Dec 2010 21:01:02 +0800 schrieb Harald Welte laforge@gnumonks.org:
Could someone say me, where can I found this library?
All osmocom projects (except openbsc, for historical reasons) are available from http://git.osmocom.org/
OK, thanks!
Besides that OpenBSC master should come with a working BSC that can be hooked to a MSC. What are you going to try with this?
As I said, I have a real MSC and I'd like to have OpenBSC just running as BSC and speaking with this MSC. Is it not, what this branch does?
This is what osmo-bsc does, whether or not you use the bsc-master or the master branch.
Do you mean, that I don't need to compile BSC in other way to have it speaking with a real MSC?
Thanks Luca
On 12/09/2010 02:26 PM, Luca Bertoncello wrote:
This is what osmo-bsc does, whether or not you use the bsc-master or the master branch.
Do you mean, that I don't need to compile BSC in other way to have it speaking with a real MSC?
Hi,
master contains an application called 'osmo-bsc'. I was writing an introduction to it a couple of days/weeks back. If you do ./configure --help you will see it... it requires libosmo-sccp.
holger