]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/mcbsp-lld.git/blobdiff - package.bld
PRSDK-4301 Add UART print console support
[keystone-rtos/mcbsp-lld.git] / package.bld
index 6545de9ac988d22bf0c36440a79746471b4ffbc8..3b0e0b185cee21ab278180349cceff72e2e20662 100644 (file)
@@ -38,7 +38,7 @@ else
  * of the RTSC Build. Here we determine the name of the TAR Ball Package
  *  Format is as follows:
  *      mcbsp_<version> */
-var mcbspRTSCFileName = "mcbsp" + "_" + mcbspLLDPartNumber + "_" + 
+var mcbspRTSCFileName = "mcbsp" + "_" +  
                       mcbspDriverReleaseVersion[0] + "_" +  mcbspDriverReleaseVersion[1] + "_" + 
                       mcbspDriverReleaseVersion[2]  + "_" + mcbspDriverReleaseVersion[3];
 
@@ -51,10 +51,13 @@ print ("MCBSP Driver Install      : " + mcbspDriverInstallType);
 print ("MCBSP Driver LLD Version  : " + mcbspDriverReleaseVersion);
 print ("Tools Directory           : " + toolsBaseDir);
 print ("RTSC File Name           : " + mcbspRTSCFileName);
-print ("MCBSP Driver LLD Path     : " + mcbspDriverPath);
-print ("CC LE opts                : " + C66LE.ccOpts.prefix);
-print ("CC BE opts                : " + C66BE.ccOpts.prefix);
-print ("****************************************************************");
+print ("MCBSP Driver LLD Path     : " + driverPath);
+if (pOpts == 1) 
+{
+    print ("CC LE opts                : " + C66LE.ccOpts.prefix);
+    print ("CC BE opts                : " + C66BE.ccOpts.prefix);
+    print ("****************************************************************");
+}
 
 /* Create the release package for the MCBSP LLD */
 Pkg.defaultRelease = Pkg.addRelease (mcbspRTSCFileName, {prefix: "./packages/"});
@@ -84,6 +87,7 @@ for (var i = 0; i < subDirectories.length; i++)
 
 /* Package the remaining files */
 Pkg.otherFiles[Pkg.otherFiles.length++] = "config.bld";
+Pkg.otherFiles[Pkg.otherFiles.length++] = "config_mk.bld";
 Pkg.otherFiles[Pkg.otherFiles.length++] = "package.bld";
 Pkg.otherFiles[Pkg.otherFiles.length++] = "package.xdc";
 Pkg.otherFiles[Pkg.otherFiles.length++] = "package.xs";
@@ -98,6 +102,10 @@ Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/Doxyfile";
 Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/doxyfile.xdt";
 Pkg.otherFiles[Pkg.otherFiles.length++] = "build/buildlib.xs";
 Pkg.otherFiles[Pkg.otherFiles.length++] = "makefile";
+Pkg.otherFiles[Pkg.otherFiles.length++] = "build/makefile.mk";
+Pkg.otherFiles[Pkg.otherFiles.length++] = "src/src_files_common.mk";
+Pkg.otherFiles[Pkg.otherFiles.length++] = "mcbsp_component.mk";
+Pkg.otherFiles[Pkg.otherFiles.length++] = "./lib";
 
 /* Generate Users Manual Doxyfile */
 var tplt = xdc.loadTemplate("./docs/doxyfile.xdt");