/****************************************************************************** * FILE PURPOSE: Build description for the Fault Management ****************************************************************************** * FILE NAME: package.bld * * DESCRIPTION: * This file contains the build specification and description for the * Packet Library * * The file takes the following parameters from the command line through the * XDCARGS variable. * XDCARGS[0] = Consumer Library Install Type * Valid Values are "TAR" or "SETUP" * DEFAULT is "SETUP" * * Example for a valid command: * xdc XDCARGS="SETUP" release * * Copyright (C) 2012-2014 Texas Instruments, Inc. *****************************************************************************/ /* List of all subdirectories that combine to make the Fault Management Package. */ var subDirectories = [ "src", "docs", "device", "test", "include", "util"]; /* Determine if we need to create the InstallJammer Application or not? * Fault Management Deliverables be either of the following formats: * - TAR Ball Package * - Setup Executable * DEFAULT is a TAR Executable. */ if ((arguments[0] != "TAR") && (arguments[0] != "SETUP")) fault_mgmtlibInstallType = "TAR"; else fault_mgmtlibInstallType = arguments[0]; /* Irrespective of the InstallType we always create a TAR Ball Package as a part * of the RTSC Build. Here we determine the name of the TAR Ball Package * Format is as follows: * fault_mgmtlib_ */ var fault_mgmtlibRTSCFileName = "fault_mgmtlib" + "_" + fault_mgmtlibPartNumber + "_" + fault_mgmtlibReleaseVersion[0] + "_" + fault_mgmtlibReleaseVersion[1] + "_" + fault_mgmtlibReleaseVersion[2] + "_" + fault_mgmtlibReleaseVersion[3]; /***************************************************************** ************************ Release Banner ************************* *****************************************************************/ print ("************* Fault Management Library Build Information *************"); print ("Fault Management Lib Install : " + fault_mgmtlibInstallType); print ("Fault Management Lib Version : " + fault_mgmtlibReleaseVersion); print ("Tools Directory : " + toolsBaseDir); print ("RTSC File Name : " + fault_mgmtlibRTSCFileName); print ("Fault Management Lib Path : " + fault_mgmtlibPath); print ("Coverity Analysis : " + (coverityAnalysis == "ON" ? "ON" : "OFF")); print ("C66 LE opts : " + C66LE.ccOpts.prefix); print ("C66 BE opts : " + C66BE.ccOpts.prefix); print ("***********************************************************"); /* Create the release package for the Fault Management Library */ Pkg.defaultRelease = Pkg.addRelease (fault_mgmtlibRTSCFileName, {prefix: "./packages/"}); /* Moving forward we need to set the Archiver of the package to be ZIP. This is currently * not supported in the XDC tools being used. Currenly builds need to be done with the * following options:- * xdc MK_FIXLISTOPTS=-t release * ZIP is a better option as it works natively with INSTALL Jammer and we can remove the * uncompression into a temporary directory. XDC Tools with xdc-rXX support the ZIP archiver. */ //Pkg.attrs = {archiver : "zip"}; /* Cycle through all the sub-directories and build all the files */ for (var i = 0; i < subDirectories.length; i++) { /* Load the capsule in the sub directory. */ var caps = xdc.loadCapsule (subDirectories[i]+"/Module.xs"); print ("Building directory " + subDirectories[i]); /* Build the capsule. */ caps.modBuild(); /* Package the module.xs files for building via package */ Pkg.otherFiles[Pkg.otherFiles.length++] = subDirectories[i]+"/Module.xs"; } /* Package the remaining files */ Pkg.otherFiles[Pkg.otherFiles.length++] = "config.bld"; Pkg.otherFiles[Pkg.otherFiles.length++] = "package.bld"; Pkg.otherFiles[Pkg.otherFiles.length++] = "package.xdc"; Pkg.otherFiles[Pkg.otherFiles.length++] = "Settings.xdc"; Pkg.otherFiles[Pkg.otherFiles.length++] = "fault_mgmt.h"; Pkg.otherFiles[Pkg.otherFiles.length++] = "fault_mgmt_osal.h"; Pkg.otherFiles[Pkg.otherFiles.length++] = "fault_mgmtlibver.h"; Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/Doxyfile"; Pkg.otherFiles[Pkg.otherFiles.length++] = "build/buildlib.xs"; Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/ReleaseNotes_fault_mgmt.pdf"; Pkg.otherFiles[Pkg.otherFiles.length++] = "makefile"; /* Generate Users Manual Doxyfile */ var tplt = xdc.loadTemplate("./docs/doxyfile.xdt"); tplt.genFile("./docs/Doxyfile",fault_mgmtlibReleaseVersion); /* Generate Settings.xdc */ var tplt = xdc.loadTemplate("./Settings.xdc.xdt"); tplt.genFile("./Settings.xdc",fault_mgmtlibReleaseVersion); /* Generate fault_mgmtlibver.h */ var tplt = xdc.loadTemplate("./fault_mgmtlibver.h.xdt"); tplt.genFile("./fault_mgmtlibver.h",fault_mgmtlibReleaseVersion); /* Check if we need to create the mini package? */ var miniBuild = java.lang.System.getenv("MINI_PACKAGE"); if (miniBuild == "ON") { /*************************************************************************** ********************************* MINI Package **************************** ***************************************************************************/ /* Create the MINI RTSC Package */ var libUtility = xdc.loadCapsule ("build/buildlib.xs"); libUtility.createMiniPkg(fault_mgmtlibRTSCFileName); } /********************************************************************* *********************** INSTALL-JAMMER Support ********************** * In order to create the InstallJammer Application; we need to UNTAR * the package into a temporary directory. This is required because * currently the InstallJammer does not support the TAR Files and thus * creating an UNTAR of the file. So to work-around the problem we will * do the following in the EPILOGUE Section:- * (a) Create a temporary directory called 'tmp' * (b) UNTAR the package into 'tmp' * (c) Run the INSTALL Jammer on 'tmp' * (d) Remove the 'tmp' directory. * * This can be done only after the 'release' package has been created. * Thus all of this work is being done in the EPILOGUE. *********************************************************************/ if (fault_mgmtlibInstallType == "SETUP") { /* Create the Install Jammer Version Variable. This is used inside the * MPI File to create the Final executable. * The format supported is as follows:- * - setupwin32_fault_mgmtlib--.exe * This is for Fault Management Libraries and Header files */ var InstallJammerVersion = "-DVersion " + fault_mgmtlibPartNumber + "_" + fault_mgmtlibReleaseVersion[0] + "_" + fault_mgmtlibReleaseVersion[1] + "_" + fault_mgmtlibReleaseVersion[2] + "_" + fault_mgmtlibReleaseVersion[3]; /* This is the location where the tmp directory is located; this is used as * the input directory for the Install Jammer. */ var PackageBaseDir = " -DPackageBaseDir " + fault_mgmtlibPath + "./tmp"; /* This is the location where the Fault Management will be installed by default. */ var WinInstallDir = " -DWinInstallDir C:/Program Files/Texas Instruments/fault_mgmtlib" + "_" + fault_mgmtlibPartNumber + "_" + fault_mgmtlibReleaseVersion[0] + "_" + fault_mgmtlibReleaseVersion[1] + "_" + fault_mgmtlibReleaseVersion[2] + "_" + fault_mgmtlibReleaseVersion[3]; /* Create the actual EPILOGUE Section for the INSTALLER */ Pkg.makeEpilogue += "release: install_application\n"; Pkg.makeEpilogue += "install_application:\n"; Pkg.makeEpilogue += "\t @echo -------------------------------------------------------\n"; Pkg.makeEpilogue += "\t @echo Creating the Install\n"; Pkg.makeEpilogue += "\t @echo -------------------------------------------------------\n"; Pkg.makeEpilogue += "\t -$(MKDIR) tmp\n"; Pkg.makeEpilogue += "\t -$(MKDIR) tmp/packages\n"; Pkg.makeEpilogue += "\t -$(MKDIR) tmp/eclipse\n"; Pkg.makeEpilogue += "\t -$(CP) -R eclipse tmp\n"; Pkg.makeEpilogue += "\t tar -xf ./packages/" + fault_mgmtlibRTSCFileName + ".tar" + " -Ctmp/packages \n"; Pkg.makeEpilogue += "\t installjammer " + InstallJammerVersion + PackageBaseDir + WinInstallDir + " --output-dir packages/ --build install/fault_mgmtlib.mpi\n"; Pkg.makeEpilogue += "\t -$(RMDIR) /S /Q tmp\n\n"; /* We need to clean after ourselves; extend the 'clean' target to take care of this. */ Pkg.makeEpilogue += "clean::\n"; Pkg.makeEpilogue += "\t -$(RM) packages/*.exe\n"; Pkg.makeEpilogue += "\t -$(RM) packages/*.bin\n"; }