1 /*\r
2 * ======== package.bld ========\r
3 */\r
4 \r
5 /*\r
6 * Create a new repository in this bundle named "packages".\r
7 * By convention most bundles contain a "packages" repository\r
8 * to hold the "high value" content. Other supporting content\r
9 * such as examples are often put into separate repositories.\r
10 */\r
11 var rep = Pkg.addRepository('packages');\r
12 \r
13 /*\r
14 * Define the contents of the new repository. Initially the\r
15 * repository is empty -- here we name the packages that are\r
16 * to be released in this repository.\r
17 *\r
18 * The packages are named using a special syntax:\r
19 * '<package name>:<release name>'\r
20 *\r
21 * Each named package is found along the package path. The\r
22 * release name is a tar file produced by "xdc release" on\r
23 * the named package, and is located in the package itself.\r
24 */\r
25 rep.addPackages(\r
26 [\r
27 'ti.sdo.edma3.rm:ti_sdo_edma3_rm.tar',\r
28 'ti.sdo.edma3.rm.sample:ti_sdo_edma3_rm_sample.tar',\r
29 'ti.sdo.edma3.drv:ti_sdo_edma3_drv.tar',\r
30 'ti.sdo.edma3.drv.sample:ti_sdo_edma3_drv_sample.tar',\r
31 ]\r
32 );\r
33 \r
34 \r
35 Pkg.otherFiles = [\r
36 'docs',\r
37 'examples',\r
38 /* 'config.bld', */\r
39 'package.bld',\r
40 'release_notes_edma3_lld_02_00_00.html',\r
41 ];\r
42 \r