blob: 6aac89de62ed5a1269ae6b2bcef133fbbf7d9eea (
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
|
DESCRIPTION = "TI (DSP/) BIOS Platform Support Package (PSP)"
HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/psp/BIOSPSP/01_30_01/index_FDS.html"
SECTION = "devel"
LICENSE = "TI BSD"
require ti-paths.inc
require ti-staging.inc
COMPATIBLE_MACHINE = "(da830-omapl137-evm|da850-omapl138-evm)"
PR = "r2"
S = "${WORKDIR}/pspdrivers_${PV}"
SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/psp/BIOSPSP/${PV}/content/BIOSPSP_${PV}_Setup.exe;name=biospsptarball"
# No real depends right now since we're not building anything - placeholder for now
DEPENDS = "ti-cgt6x ti-dspbios ti-edma3lld"
do_configure() {
echo "Do Nothing for now"
}
do_compile() {
echo "Do Nothing for now"
}
do_install() {
install -d ${D}${BIOSPSP_INSTALL_DIR_RECIPE}
cp -pPrf ${S}/* ${D}${BIOSPSP_INSTALL_DIR_RECIPE}
}
|