summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Tivy <rtivy@ti.com>2015-02-27 09:38:16 -0800
committerRobert Tivy <rtivy@ti.com>2015-02-27 10:32:51 -0800
commit79adfe350777a3d51a41ffa7719efe51fdfabca5 (patch)
tree09865fee7f397a320d2998dfa7b31d082b428f51
parent31a4c3ca1f8e7ea923d49364d5b1159572e63784 (diff)
downloadipc-79adfe350777a3d51a41ffa7719efe51fdfabca5.tar.gz
Fix incorrect generation of --diags option usage
A --diags option is being thrown to suppress a warning about an entry point other than _c_int00, but it was being thrown even when the -e entry point option was not used. Changed to throw the --diags only when we throw the -e.
-rw-r--r--packages/ti/ipc/remoteproc/linkcmd.xdt14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/ti/ipc/remoteproc/linkcmd.xdt b/packages/ti/ipc/remoteproc/linkcmd.xdt
index 857c622..44cfea9 100644
--- a/packages/ti/ipc/remoteproc/linkcmd.xdt
+++ b/packages/ti/ipc/remoteproc/linkcmd.xdt
@@ -32,26 +32,26 @@
%%}
%if (xdc.module('ti.sysbios.BIOS').$used) {
- /*
- * Set entry point to the HWI reset vector 0 to automatically satisfy
- * any alignment constraints for the boot vector.
- */
-%if ((Program.build.target.$name.match(/C64P/)) ||
+% if ((Program.build.target.$name.match(/C64P/)) ||
% (Program.build.target.$name.match(/C674/)) ||
% (Program.build.target.$name.match(/C64T/)) ||
% (Program.build.target.$name.match(/C66/)) ||
% (Program.build.target.$name.match(/C67P/))) {
+ /*
+ * Set entry point to the HWI reset vector 0 to automatically satisfy
+ * any alignment constraints for the boot vector.
+ */
% if (Program.build.target.$name.match(/elf/)) {
-eti_sysbios_family_c64p_Hwi0
% }
% else {
-e_ti_sysbios_family_c64p_Hwi0
% }
-%}
/*
* We just modified the entry point, so suppress "entry point symbol other
* than _c_int00 specified" warning.
*/
--diag_suppress=10063
-%} \ No newline at end of file
+% }
+%}