aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti/bitblit_svn.bb
blob: f813b31f06b49c0fe68c4467b5705d7a06927884 (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
DESCRIPTION = "Low level 2D blitting/blending graphics acceleration services support on DM6446, OMAP3530 and OMAP-L137."

require ti-paths.inc

inherit autotools

DEPENDS = "ti-codec-engine ti-dmai"

# Fetch source from svn repo
SRCREV = "2"
SRC_URI = "svn://gforge.ti.com/svn/${PN};module=trunk;proto=https;user=anonymous;pswd='' \
           file://recent-linux.diff;patch=1 \
"

# Again, no '.' in PWD allowed :(
PV = "0+svnr${SRCPV}"
PR = "r1"

S = "${WORKDIR}/trunk/bitblit"

XDC_TARGET  				= gnu.targets.arm.GCArmv5T
XDC_PLATFORM_dm6446-evm 	= ti.platforms.evmDM6446
XDC_PLATFORM_da830-omapl137-evm 	= ti.platforms.omapl137
PLATFORM_XDC				= ${XDC_PLATFORM}

export XDC_TARGET
export XDC_PLATFORM
export PLATFORM_XDC 

PLATFORM_dm6446-evm 		= "dm6446"
PLATFORM_da830-omapl137-evm = "ol137"

export LINUXLIBS_INSTALL_DIR="${STAGING_DIR_HOST}/usr"
export EXEC_DIR = "${D}${datadir}/ti/bitblit/"

CPPFLAGS_append 			= " -DPlatform_${PLATFORM}"

PACKAGE_ARCH = "${MACHINE_ARCH}"

do_compile() {
	oe_runmake -e all
}

do_install() {
	oe_runmake -e install
}