summaryrefslogtreecommitdiff
path: root/src/speech-service/run
diff options
context:
space:
mode:
authorasanoaozora <fifitaneki@hotmail.com>2017-09-26 13:55:44 +0200
committerasanoaozora <fifitaneki@hotmail.com>2017-09-26 13:55:44 +0200
commitb9bda20d81ea44ed8265de8819eb95e2e31dabf9 (patch)
tree084b28b6af44b393137a21f7abb6c7e1402daafe /src/speech-service/run
parentf14e57e3656a5500563bdd32537ac1295d4a3f52 (diff)
downloadpoi-service-b9bda20d81ea44ed8265de8819eb95e2e31dabf9.tar.gz
update speech POC and connect it to navigation (some improvements needed)
Diffstat (limited to 'src/speech-service/run')
-rwxr-xr-xsrc/speech-service/run41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/speech-service/run b/src/speech-service/run
new file mode 100755
index 0000000..f60767e
--- /dev/null
+++ b/src/speech-service/run
@@ -0,0 +1,41 @@
+#!/bin/sh
+
+# @licence app begin@
+# SPDX-License-Identifier: MPL-2.0
+#
+# \copyright Copyright (C) 2013-2014, PCA Peugeot Citroen
+#
+# \file run
+#
+# \brief This file is part of the Build System.
+#
+# \author Philippe Colliot <philippe.colliot@mpsa.com>
+#
+# \version 1.0
+#
+# This Source Code Form is subject to the terms of the
+# Mozilla Public License (MPL), v. 2.0.
+# If a copy of the MPL was not distributed with this file,
+# You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# For further information see http://www.genivi.org/.
+#
+# List of changes:
+#
+# <date>, <name>, <description of change>
+#
+# @licence end@
+
+CURDIR=$PWD
+
+BIN_DIR=$CURDIR/bin
+SPEECH_OUPUT_SERVER_BIN_DIR=$BIN_DIR
+
+echo 'kill reminding orphan process if necessary'
+./kill-all
+
+echo '------------------------start the server------------------------'
+$SPEECH_OUPUT_SERVER_BIN_DIR/speech-server
+
+
+