blob: b6991a195b6e9b0243e39b03284f13c085cbe920 (
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
|
DESCRIPTION = "Davinci (and OMAP) Multimedia Application Interface"
DEPENDS = "virtual/kernel codec-engine"
LICENCE = "unknown"
require ti-paths.inc
# https://www-a.ti.com/downloads/sds_support/applications_packages/dmai/dmai_1_20_00_06/dmai_setuplinux_1_20_00_06.bin
# Install the above link and put the dmai_1_20_00_06.tar.gz file in the same directory as this recipe
SRC_URI = "file://dmai_1_20_00_06.tar.gz \
file://dmai-update-cpu-name.patch;patch=1 \
file://dmai-update-fb-display.patch;patch=1 \
file://dmai-update-v4l2-display.patch;patch=1 \
file://dmai-do-not-panic-on-mixer-failure.patch;patch=1 \
file://dmai-support-32bit-align.patch;patch=1 \
file://dmai-built-with-angstrom.patch;patch=1 \
"
S = "${WORKDIR}/dmai_1_20_00_06"
# Yes, the xdc stuff still breaks with a '.' in PWD
PV = "120"
PACKAGE_ARCH = "${MACHINE_ARCH}"
TARGET = "all"
TARGET_neuros-osd2 = " dm6446_al dm6446_db"
TARGET_beagleboard = " o3530_al"
TARGET_omap3evm = " o3530_al"
export CE_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/codecengine/cetools"
do_compile_prepend_omap3evm() {
#temp removal of sources that fail to build
if [ -e packages/ti/sdo/dmai/linux/omap3530/Resize.c ]; then
rm packages/ti/sdo/dmai/linux/omap3530/Resize.c
fi
if [ -e packages/ti/sdo/dmai/linux/omap3530/Framecopy_accel.c ]; then
rm packages/ti/sdo/dmai/linux/omap3530/Framecopy_accel.c
fi
}
do_compile() {
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 () {
echo oe_runmake install
}
do_stage () {
install -d ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/dmai
cp -pPrf ${S}/* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/dmai
}
|