summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Sobota2015-11-17 15:17:20 -0600
committerJustin Sobota2015-11-17 15:17:20 -0600
commit40bb31f8950eba0e26bc3436eabba53108501185 (patch)
tree16a2e8964dcad9810f1037b81d6aef3024b9b3d6
parent0b535f8db8d0005391100b26677e01a6963debdf (diff)
downloadfault_mgmt-40bb31f8950eba0e26bc3436eabba53108501185.tar.gz
fault_mgmt-40bb31f8950eba0e26bc3436eabba53108501185.tar.xz
fault_mgmt-40bb31f8950eba0e26bc3436eabba53108501185.zip
device-dependent library cleanup
Signed-off-by: Justin Sobota <jsobota@ti.com>
-rw-r--r--docs/Module.xs8
-rw-r--r--src/Module.xs2
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/Module.xs b/docs/Module.xs
index 984a61d..cf4dcf1 100644
--- a/docs/Module.xs
+++ b/docs/Module.xs
@@ -6,7 +6,7 @@
6 * DESCRIPTION: 6 * DESCRIPTION:
7 * This file contains the module specification for the Fault Management Lib Documentation . 7 * This file contains the module specification for the Fault Management Lib Documentation .
8 * 8 *
9 * Copyright (C) 2012, Texas Instruments, Inc. 9 * Copyright (C) 2012-2015, Texas Instruments, Inc.
10 *****************************************************************************/ 10 *****************************************************************************/
11 11
12/* Load the library utility. */ 12/* Load the library utility. */
@@ -38,15 +38,15 @@ function modBuild()
38 Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/doxygen"; 38 Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/doxygen";
39 Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/ReleaseNotes_fault_mgmt.pdf"; 39 Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/ReleaseNotes_fault_mgmt.pdf";
40 40
41 if (fault_mgmtlibInstallType == "SETUP") 41 if (lldInstallType == "SETUP")
42 { 42 {
43 /* Generate the ECLIPSE Plugin Generation */ 43 /* Generate the ECLIPSE Plugin Generation */
44 Pkg.makePrologue += "all: eclipse_plugin_generation\n"; 44 Pkg.makePrologue += "all: eclipse_plugin_generation\n";
45 Pkg.makePrologue += "eclipse_plugin_generation:\n"; 45 Pkg.makePrologue += "eclipse_plugin_generation:\n";
46 Pkg.makePrologue += "\t @echo -------------------------------------------------------\n"; 46 Pkg.makePrologue += "\t @echo -------------------------------------------------------\n";
47 Pkg.makePrologue += "\t @echo RM LLD Eclipse Plugin Generation\n"; 47 Pkg.makePrologue += "\t @echo FM Eclipse Plugin Generation\n";
48 Pkg.makePrologue += "\t xs xdc.tools.eclipsePluginGen -o . -x ./eclipseDocs/sample.xml -c ./eclipseDocs/toc_cdoc_sample.xml\n"; 48 Pkg.makePrologue += "\t xs xdc.tools.eclipsePluginGen -o . -x ./eclipseDocs/sample.xml -c ./eclipseDocs/toc_cdoc_sample.xml\n";
49 Pkg.makePrologue += "\t @echo RM LLD Eclipse Plugin Generated \n"; 49 Pkg.makePrologue += "\t @echo FM Eclipse Plugin Generated \n";
50 Pkg.makePrologue += "\t @echo -------------------------------------------------------\n"; 50 Pkg.makePrologue += "\t @echo -------------------------------------------------------\n";
51 } 51 }
52} 52}
diff --git a/src/Module.xs b/src/Module.xs
index 0e70885..0a6ff44 100644
--- a/src/Module.xs
+++ b/src/Module.xs
@@ -30,7 +30,7 @@ function modBuild()
30 /* Build the device independent libraries for all the targets specified. */ 30 /* Build the device independent libraries for all the targets specified. */
31 for (var targets=0; targets < socs["all"].targets.length; targets++) 31 for (var targets=0; targets < socs["all"].targets.length; targets++)
32 { 32 {
33 var targetFiles = fault_mgmtLibFile.slice(); /* make copy */ 33 var targetFiles = fault_mgmtLibFiles.slice(); /* make copy */
34 var libOptions = { 34 var libOptions = {
35 copts: socs["all"].copts, 35 copts: socs["all"].copts,
36 incs: lldIncludePath, 36 incs: lldIncludePath,