blob: b335c7b707387343ee45dfbd5e2c9305a952a491 (
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
|
DESCRIPTION = "Davinci (and OMAP) Multimedia Application Interface"
DEPENDS = "virtual/kernel ti-codec-engine ti-codec-combos"
LICENCE = "unknown"
inherit module-base
require ti-paths.inc
INSANE_SKIP_${PN} = True
INSANE_SKIP_${PN}-apps = True
SRC_URI = "svn://gforge.ti.com/svn/dmai/branches;module=BRIJESH_GIT_022309;proto=https;user=anonymous;pswd='' \
file://dmai-built-with-angstrom.patch;patch=1 \
file://loadmodules-ti-dmai-apps.sh \
file://unloadmodules-ti-dmai-apps.sh \
"
SRCREV = "120"
S = "${WORKDIR}/BRIJESH_GIT_022309/davinci_multimedia_application_interface/dmai"
# Yes, the xdc stuff still breaks with a '.' in PWD
PV = "120+svnr${SRCREV}"
TARGET = "all"
TARGET_neuros-osd2 = " dm6446_al dm6446_db"
TARGET_armv7a = " o3530_al"
TARGET_beagleboard = " o3530_al"
TARGET_omap3evm = " o3530_al"
export CE_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-engine"
export FC_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-engine/cetools"
export CODEC_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos"
do_compile() {
if [ $(echo ${KERNEL_VERSION} | cut -c5,6) -gt 28 ] ; then
sed -i -e s:mach/omapfb:linux/omapfb:g packages/ti/sdo/dmai/linux/Display_fbdev.c
fi
cd packages/ti/sdo/dmai
oe_runmake clean
oe_runmake ${TARGET} C_FLAGS="-O2 -I${STAGING_INCDIR}"
cd apps
oe_runmake clean
oe_runmake ${TARGET}
}
do_install () {
install -d ${D}/${datadir}/ti-dmai/apps
export EXEC_DIR="${D}/${datadir}/ti-dmai/apps"
oe_runmake install
#test app module un/load scripts
install ${WORKDIR}/loadmodules-ti-dmai-apps.sh ${D}/${datadir}/ti-dmai
install ${WORKDIR}/unloadmodules-ti-dmai-apps.sh ${D}/${datadir}/ti-dmai
}
do_stage () {
install -d ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-dmai
cp -pPrf ${S}/* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-dmai
}
PACKAGES =+ "ti-dmai-apps"
ALLOW_EMPTY_${PN} = "1"
RRECOMMENDS_${PN} = "ti-dmai-apps"
FILES_ti-dmai-apps = "${datadir}/ti-dmai/*"
pkg_postinst_ti-dmai-apps () {
if [ -n "$D" ]; then
exit 1
fi
ln -sf /usr/share/ti-codec-combos/* /usr/share/ti-dmai/apps
}
INHIBIT_PACKAGE_STRIP = "1"
PACKAGE_ARCH = "${MACHINE_ARCH}"
#add run-time dependencies - note for kernel module we can only use RRECOMMENDS, since modules might be built into the kernel
# and for now we make codecs RRECOMMENDS as well, since not everyone will have them
#RDEPENDS_ti-dmai-apps += "ti-codec-combos"
RRECOMMENDS_ti-dmai-apps += "ti-cmem-module ti-lpm-module ti-dsplink-module ti-codec-combos"
|