]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - package.bld
Merge pull request #2 in PROCESSOR-SDK/edma3_lld from PRSDK-1521 to master
[keystone-rtos/edma3_lld.git] / package.bld
1 /*
2  *  ======== package.bld ========
3  */
5 /*
6  * Create a new repository in this bundle named "packages".
7  * By convention most bundles contain a "packages" repository
8  * to hold the "high value" content. Other supporting content
9  * such as examples are often put into separate repositories.
10  */
11 var rep = Pkg.addRepository('packages');
13 /*
14  * Define the contents of the new repository. Initially the
15  * repository is empty -- here we name the packages that are
16  * to be released in this repository.
17  *
18  * The packages are named using a special syntax:
19  *   '<package name>:<release name>'
20  *
21  * Each named package is found along the package path. The
22  * release name is a tar file produced by "xdc release" on
23  * the named package, and is located in the package itself.
24  */
25 rep.addPackages(
26     [
27         'ti.sdo.edma3.rm:ti_sdo_edma3_rm.tar',
28         'ti.sdo.edma3.rm.sample:ti_sdo_edma3_rm_sample.tar',
29         'ti.sdo.edma3.drv:ti_sdo_edma3_drv.tar',
30         'ti.sdo.edma3.drv.sample:ti_sdo_edma3_drv_sample.tar',
31     ]
32 );
34 Pkg.otherFiles = [
35     'docs',
36     'eclipse',
37     'examples',
38     'package.bld',
39     'release_notes_edma3_lld.html',
40     'EDMA3_LLD_SoftwareManifest.html',
41 ];