From 45ee6b4e2cd55b901770578e6915312e7792edae Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 10 Sep 2014 17:05:51 +0200 Subject: Ported boot/boot.sh to python --- boot/boot.py | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) (limited to 'boot/boot.py') diff --git a/boot/boot.py b/boot/boot.py index e107166..ed191f0 100755 --- a/boot/boot.py +++ b/boot/boot.py @@ -1,9 +1,33 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import os -import urllib2 import sys +# Set $JASPER_HOME +jasper_home = os.getenv("JASPER_HOME") +if not jasper_home or not os.path.exists(jasper_home): + if os.path.exists("/home/pi"): + jasper_home = "/home/pi" + os.environ["JASPER_HOME"] = jasper_home + else: + print("Error: $JASPER_HOME is not set.") + sys.exit(0) + +# Change CWD to $JASPER_HOME/jasper/boot +os.chdir(os.path.join(os.getenv("JASPER_HOME"), "jasper", "boot")) + +# Set $LD_LIBRARY_PATH +os.environ["LD_LIBRARY_PATH"] = "/usr/local/lib" + +# Set $PATH +path = os.getenv("PATH") +if path: + path = os.pathsep.join([path, "/usr/local/lib/"]) +else: + path = "/usr/local/lib/" +os.environ["PATH"] = path + +import urllib2 import vocabcompiler import traceback @@ -13,7 +37,6 @@ sys.path.append(lib_path) import speaker as speak speaker = speak.newSpeaker() - def testConnection(): try: urllib2.urlopen("http://www.google.com").getcode() -- cgit v1.3.1