aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/bts.c2
-rw-r--r--src/osmo-bts-sysmo/main.c11
2 files changed, 10 insertions, 3 deletions
diff --git a/src/common/bts.c b/src/common/bts.c
index 63560c2f..2ac411d0 100644
--- a/src/common/bts.c
+++ b/src/common/bts.c
@@ -176,7 +176,7 @@ int bts_link_estab(struct gsm_bts *bts)
}
}
- return 0;
+ return bts_model_oml_estab(bts);
}
/* RSL link is established, send status report */
diff --git a/src/osmo-bts-sysmo/main.c b/src/osmo-bts-sysmo/main.c
index b3f1d504..f6e7275c 100644
--- a/src/osmo-bts-sysmo/main.c
+++ b/src/osmo-bts-sysmo/main.c
@@ -73,13 +73,20 @@ int bts_model_init(struct gsm_bts *bts)
bts->c0->role_bts.l1h = fl1h;
bts->c0->nominal_power = 23;
- l1if_reset(fl1h);
-
bts_model_vty_init(bts);
return 0;
}
+int bts_model_oml_estab(struct gsm_bts *bts)
+{
+ struct femtol1_hdl *fl1h = bts->c0->role_bts.l1h;
+
+ l1if_reset(fl1h);
+
+ return 0;
+}
+
static void print_help()
{
printf( "Some useful options:\n"