diff options
author | Kevin Rocard <kevinx.rocard@intel.com> | 2013-10-02 19:44:09 +0200 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:04:10 +0100 |
commit | 5f8cecf6c7f974bb3543d2f7629d78e0f57d8425 (patch) | |
tree | 573b20dc206d91d54a31db024bd1686bf1ac2198 /tools | |
parent | 46966e050fdd1ae48c7692ae9818762ba262e781 (diff) | |
download | external_parameter-framework-5f8cecf6c7f974bb3543d2f7629d78e0f57d8425.zip external_parameter-framework-5f8cecf6c7f974bb3543d2f7629d78e0f57d8425.tar.gz external_parameter-framework-5f8cecf6c7f974bb3543d2f7629d78e0f57d8425.tar.bz2 |
HostDomainGenerator: Fix relative link
BZ: 144262
Currently, the hostDomainGenrator doesn't handle well some relative
links.
This patch fixes the issue.
Change-Id: I7289b98c4e367a880ce0eac9238693f80c540a3c
Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>
Reviewed-on: http://android.intel.com:8080/135931
Reviewed-by: Boisnard, FredericX <fredericx.boisnard@intel.com>
Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com>
Reviewed-by: Gaio, MiguelX <miguelx.gaio@intel.com>
Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com>
Tested-by: Barthes, FabienX <fabienx.barthes@intel.com>
Reviewed-by: cactus <cactus@intel.com>
Tested-by: cactus <cactus@intel.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/xmlGenerator/hostDomainGenerator.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xmlGenerator/hostDomainGenerator.sh b/tools/xmlGenerator/hostDomainGenerator.sh index f401d4e..600c326 100755 --- a/tools/xmlGenerator/hostDomainGenerator.sh +++ b/tools/xmlGenerator/hostDomainGenerator.sh @@ -124,7 +124,7 @@ retry() { # Configure the PFW main config file for simulation formatConfigFile () { - "$hostConfig" $PFWSocket "$(dirname "$1")" <"$1" + "$hostConfig" $PFWSocket "$(readlink -f "$(dirname "$1")")" <"$1" } # The initTestPlatform starts a testPlatform instance with the config file given in argument. @@ -208,7 +208,7 @@ PFWSendCommand="$remoteProcess $PFWHost $PFWSocket" $PFWSendCommand setTuningMode on -# Send the xml domain tunning file +echo "Send the xml domain tunning file: $xmlDomainFilePath" $PFWSendCommand setDomainsWithSettingsXML "$(cat $xmlDomainFilePath)" # Send the extended domain description routing files converted to pfw commands |