blob: 10aa733367dc42e55d5d1150c832880ab921c02f (
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
|
DESCRIPTION = "TI Codecs (and Server Combo) for OMAP3530"
HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent"
SECTION = "multimedia"
# TODO :: Move to common .inc (omap3 and omapl ready)
PV = "1_00_01"
SRC_URI[omap3codecsbin.md5sum] = "4db567252e6c43119e1c0aafe401a679"
SRC_URI[omap3codecsbin.sha256sum] = "e042e1aad42a6728adf5c955dc38e4f8331fc0eacd833f1cd75d9cbb4faff0b5"
PE = "1"
PR = "r8"
require ti-paths.inc
require ti-staging.inc
require ti-eula-unpack.inc
PROVIDES += "ti-codecs-omap3530-server"
RREPLACES_${PN} = "ti-cs1-omap3530"
S = "${WORKDIR}/dvsdk_3_00_02_44/cs1omap3530_1_00_01"
SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/dvsdk/DVSDK_3_00/3_00_02_44/exports/cs1omap3530_setuplinux_1_00_01-44.bin;name=omap3codecsbin"
BINFILE = "cs1omap3530_setuplinux_1_00_01-44.bin"
TI_BIN_UNPK_CMDS = "Y:Y: qY:workdir"
DEPENDS = "ti-cgt6x ti-xdctools ti-dspbios ti-codec-engine ti-linuxutils"
#generic codec
DSPSUFFIX_omap3 = "x64P"
do_prepsources() {
make \
CE_INSTALL_DIR=${CE_INSTALL_DIR} \
FC_INSTALL_DIR=${FC_INSTALL_DIR} \
LINK_INSTALL_DIR=${LINK_INSTALL_DIR} \
CMEM_INSTALL_DIR=${CMEM_INSTALL_DIR} \
LPM_INSTALL_DIR=${LPM_INSTALL_DIR} \
BIOS_INSTALL_DIR=${BIOS_INSTALL_DIR} \
CODEGEN_INSTALL_DIR=${CODEGEN_INSTALL_DIR} \
XDC_INSTALL_DIR=${XDC_INSTALL_DIR} \
CODEC_INSTALL_DIR="${S}" \
XDCARGS="prod" \
clean
}
addtask prepsources after do_configure before do_compile
do_compile() {
make \
CE_INSTALL_DIR=${CE_INSTALL_DIR} \
FC_INSTALL_DIR=${FC_INSTALL_DIR} \
LINK_INSTALL_DIR=${LINK_INSTALL_DIR} \
CMEM_INSTALL_DIR=${CMEM_INSTALL_DIR} \
LPM_INSTALL_DIR=${LPM_INSTALL_DIR} \
BIOS_INSTALL_DIR=${BIOS_INSTALL_DIR} \
CODEGEN_INSTALL_DIR=${CODEGEN_INSTALL_DIR} \
XDC_INSTALL_DIR=${XDC_INSTALL_DIR} \
CODEC_INSTALL_DIR="${S}" \
XDCARGS="prod" \
all
}
do_install() {
install -d ${D}/${installdir}/ti-codecs-server
cd ${S}
# Install the DSP Server Binary
for file in `find . -name *.${DSPSUFFIX}`; do
cp ${file} ${D}/${installdir}/ti-codecs-server
done
# Install docs (codec qualiTI test reports, server config datasheet, etc)
for file in `find . -name *.html`; do
cp ${file} ${D}/${installdir}/ti-codecs-server
done
install -d ${D}${CODEC_INSTALL_DIR_RECIPE}
cp -pPrf ${S}/* ${D}${CODEC_INSTALL_DIR_RECIPE}
}
PACKAGES += "ti-codecs-omap3530-server"
FILES_ti-codecs-omap3530-server = "${installdir}/ti-codecs-server/*"
|