From 44b29d04c3bbce95f60476f0ffdd33f7e5f5992e Mon Sep 17 00:00:00 2001
From: Robert Schmidt <robert.schmidt@eurecom.fr>
Date: Fri, 26 Oct 2018 14:35:53 +0200
Subject: [PATCH] Read config before starting FlexRAN for node_type and ID

---
 targets/RT/USER/lte-softmodem.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/targets/RT/USER/lte-softmodem.c b/targets/RT/USER/lte-softmodem.c
index 34ac829f5c..c6e53c9f12 100644
--- a/targets/RT/USER/lte-softmodem.c
+++ b/targets/RT/USER/lte-softmodem.c
@@ -1047,6 +1047,10 @@ int main( int argc, char **argv )
   }
   LOG_I(HW, "CPU Affinity of main() function is... %s\n", cpu_affinity);
 #endif
+
+  /* Read configuration */
+  if (RC.nb_inst > 0)
+    read_config_and_init();
   
   /* Start the agent. If it is turned off in the configuration, it won't start */
   RCconfig_flexran();
@@ -1055,7 +1059,6 @@ int main( int argc, char **argv )
   }
     
   if (RC.nb_inst > 0)  {
-    read_config_and_init();
 
     if (create_tasks(1) < 0) {
       printf("cannot create ITTI tasks\n");
-- 
GitLab