Commit ba9d4102 authored by Lionel Gauthier's avatar Lionel Gauthier

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6236 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 999c4371
......@@ -688,7 +688,8 @@ esac
############################################
echo_info "11. Running ... To be completed"
cd $OPENAIR_TARGETS/bin
if [ $BUILD_LTE == "ENB" ]; then
case "$BUILD_LTE" in
'ENB')
if [ $TARGET == "SOFTMODEM" ]; then
if [ $HW == "EXMIMO" ]; then
$SUDO chmod 777 $OPENAIR_TARGETS/RT/USER/init_exmimo2.sh
......@@ -705,8 +706,10 @@ if [ $BUILD_LTE == "ENB" ]; then
$SUDO gdb -nh -x ~/.gdb_lte_softmodem 2>&1
fi
fi
else
if [ $BUILD_LTE == "EPC" ]; then
;;
'EPC')
echo "############# running epc #############"
if [ $RUN_GDB -eq 0 ]; then
$SUDO exec $OPENAIR_TARGETS/bin/oai_epc `echo $EXE_ARGUMENTS`
......@@ -717,11 +720,21 @@ else
$SUDO echo "run" >> ~/.gdb_epc
$SUDO gdb -nh -x ~/.gdb_epc 2>&1
fi
echo_info "7. run EPC (check the bin/epc.generic.conf params)"
cd bin/
$SUDO ./oai_epc -c ./epc.generic.conf -K /tmp/itti.log
;;
fi
fi
'HSS')
echo_warning "TODO execute HSS: Experimental"
;;
'NONE')
;;
*)
echo_error "Unknown option $BUILD_LTE: do not execute"
;;
esac
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment