Hi all,
I know this problem has been dealt previously in a minor variation but
please help me out here.
I'm trying to configure OpenBSC using the USRP N210 device and followed the
same network from scratch installation.
I got up to the part where sysmobts gives the error and corrected it by
editing the makefile.
But unlike others my 'make' command is giving me an error in the rsl.c
file.
make[2]: Entering directory
`/home/prabu/OpenBSC-OpenBTS/osmo-bts/src/common'
CC rsl.o
rsl.c:140:2: warning: #warning merge lchan_lookup with OpenBSC [-Wcpp]
rsl.c: In function ‘rsl_rx_chan_activ’:
rsl.c:779:53: error: ‘struct gsm_lchan’ has no member named ‘mr_bts_lv’
rsl.c:783:15: error: ‘struct gsm_lchan’ has no member named ‘mr_bts_lv’
rsl.c: In function ‘rsl_rx_mode_modif’:
rsl.c:1028:53: error: ‘struct gsm_lchan’ has no member named ‘mr_bts_lv’
rsl.c:1032:15: error: ‘struct gsm_lchan’ has no member named ‘mr_bts_lv’
make[2]: *** [rsl.o] Error 1
make[2]: Leaving directory `/home/prabu/OpenBSC-OpenBTS/osmo-bts/src/common'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/prabu/OpenBSC-OpenBTS/osmo-bts/src'
make: *** [all-recursive] Error 1
Can someone please help me out in what this error deals with. Or people who
successfully completed the installation could tell me what they did
differently
Regards,
Jijo
Before the assigned value (0xFF) was truncated, reg->text[0] is of
type char. A corresponding test for the same value in openbsc could
only fail.
---
src/gsm/gsm0480.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/gsm/gsm0480.c b/src/gsm/gsm0480.c
index 92a62dc..dbacefc 100644
--- a/src/gsm/gsm0480.c
+++ b/src/gsm/gsm0480.c
@@ -234,7 +234,7 @@ static int parse_ussd(const struct gsm48_hdr *hdr, uint16_t len, struct ussd_req
case GSM0480_MTYPE_RELEASE_COMPLETE:
LOGP(0, LOGL_DEBUG, "USS Release Complete\n");
/* could also parse out the optional Cause/Facility data */
- req->text[0] = 0xFF;
+ req->text[0] = '\0';
break;
case GSM0480_MTYPE_REGISTER:
case GSM0480_MTYPE_FACILITY:
--
1.8.3.2
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hi everyone,
we (Rhizomatica.org) are currently setting up a OpenBSC-based network
in Oaxaca, Mexico. I've been looking into the code and found the
token-based authentication which was used at the HAR2009 (I still
remember receiving that SMS) :)
I understand that each phone will get an SMS and then disconnect from
the network. What is the API to confirm the token and activate the
account? I vaguely remember a web interface at the time, but I could
be wrong...
Thanks a lot!
Ciaby
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iF4EAREKAAYFAlJXerwACgkQC30ZhxNccpFbuAEAjJN+DEjz5rlYBbYJeBw2884e
SuSvNHud+XfcDJL0IaYBAJFFIJbEG6XtdTADCt4lyvdaRcbTDn0B2f9NZEod8kJU
=KqiR
-----END PGP SIGNATURE-----