blob: a822cf1be4a9fe0bef3e38e13fa88a8b7c7a284f (
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
|
DESCRIPTION = "DSP Link for TI ARM/DSP processors"
DEPENDS = "virtual/kernel"
PR = "r0"
# Get dsplink tarball from TI website, place in sources and calculate
# md5sum
# https://www-a.ti.com/downloads/sds_support/targetcontent/link/index.html
SRC_URI ="http://install.tarball.in.source.dir/dsplink_1_50.tar.gz \
"
S = "${WORKDIR}/dsplink_1_50/dsplink"
# Needed for buildscripts
export DSPLINK = "${S}"
do_configure () {
}
do_compile () {
sh ${S}/etc/host/scripts/Linux/buildmodule.sh
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
|