summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDavid Wagner <david.wagner@intel.com>2015-01-16 16:59:06 +0100
committerDavid Wagner <david.wagner@intel.com>2015-01-28 20:02:54 +0100
commitb102431883806b1a2bd6507e0a61e7eca74ebe3b (patch)
tree1232f5088bdad448b9f515e2f978ee3bb796b7bf /tools
parent962ff7b523d81249dfc1eb6870b7a6249893e2ea (diff)
downloadexternal_parameter-framework-b102431883806b1a2bd6507e0a61e7eca74ebe3b.zip
external_parameter-framework-b102431883806b1a2bd6507e0a61e7eca74ebe3b.tar.gz
external_parameter-framework-b102431883806b1a2bd6507e0a61e7eca74ebe3b.tar.bz2
domainGenerator.py: disable the remote interface
The remote interface sometimes gets in the way of XML generation when the port is already in use. A "retry" mechanism existed in the previous generator but was unreliable. In the new generator, we disable it altogether as we don't need it. Change-Id: I0a1850058b688f5ea09b93959601d3c706d812b6 Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/xmlGenerator/domainGenerator.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/xmlGenerator/domainGenerator.py b/tools/xmlGenerator/domainGenerator.py
index 516a3bd..88c4b02 100755
--- a/tools/xmlGenerator/domainGenerator.py
+++ b/tools/xmlGenerator/domainGenerator.py
@@ -275,6 +275,10 @@ if __name__ == "__main__":
logger = PfwLogger()
pfw.setLogger(logger)
+ # Disable the remote interface because we don't need it and it might
+ # get in the way (e.g. the port is already in use)
+ pfw.setForceNoRemoteInterface(True)
+
# Finally, start the Pfw
ok, error = pfw.start()
if not ok: