aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <[denis@denix.org]>2010-01-21 09:03:18 +0100
committerKoen Kooi <koen@openembedded.org>2010-04-12 19:43:12 +0200
commit93e1f588ae07613878b2efcc11edac4a09336047 (patch)
tree371d2903daceb51f37a147399646333de9e45d8c
parent580a4e4057f99c0e83ba5a205da4a0072012eef6 (diff)
downloadopenembedded-93e1f588ae07613878b2efcc11edac4a09336047.tar.gz
ti-codec-engine: fixes
* there is no loadmodules.sh for DM365 in this version * add lost DM6467 deps, make linuxutils dep common Signed-off-by: Koen Kooi <k-kooi@ti.com>
-rw-r--r--recipes/ti/ti-codec-engine.inc13
1 files changed, 8 insertions, 5 deletions
diff --git a/recipes/ti/ti-codec-engine.inc b/recipes/ti/ti-codec-engine.inc
index c2a6e8e004..bb9466419d 100644
--- a/recipes/ti/ti-codec-engine.inc
+++ b/recipes/ti/ti-codec-engine.inc
@@ -3,11 +3,12 @@ DESCRIPTION = "Codec Engine for TI ARM/DSP processors"
require ti-paths.inc
# compile time dependencies
-DEPENDS = "ti-framework-components ti-xdais ti-xdctools ti-cgt6x ti-biosutils ti-edma3lld"
+DEPENDS = "ti-framework-components ti-xdais ti-xdctools ti-cgt6x ti-biosutils ti-edma3lld ti-linuxutils"
-DEPENDS_append_dm6446 = " ti-dspbios ti-linuxutils ti-dsplink-module"
-DEPENDS_append_omap3 = " ti-dspbios ti-linuxutils ti-dsplink-module ti-lpm-module"
-DEPENDS_append_omapl138 = " ti-dspbios ti-linuxutils ti-dsplink-module"
+DEPENDS_append_dm6446 = " ti-dspbios ti-dsplink-module"
+DEPENDS_append_dm6467 = " ti-dspbios ti-dsplink-module"
+DEPENDS_append_omap3 = " ti-dspbios ti-dsplink-module ti-lpm-module"
+DEPENDS_append_omapl138 = " ti-dspbios ti-dsplink-module"
SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ce/${PV}/exports/codec_engine_${PV},lite.tar.gz;name=cetarball"
@@ -66,7 +67,9 @@ do_compile () {
do_install() {
install -d ${D}/${installdir}/codec-engine-apps
- cp ${S}/examples/apps/system_files/${DEVICES}/loadmodules.sh ${D}/${installdir}/codec-engine-apps
+ if [-e ${S}/examples/apps/system_files/${DEVICES}/loadmodules.sh ]; then
+ cp ${S}/examples/apps/system_files/${DEVICES}/loadmodules.sh ${D}/${installdir}/codec-engine-apps
+ fi
cd ${S}/examples/ti/sdo/ce/examples
on> OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/export.py
blob: 01174edae55ec8297553b7c41b9ab4f78738f595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109