diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-06 20:43:34 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-06 20:43:34 +0000 |
commit | b040233aa67e14d72759338b4636edb55b258bba (patch) | |
tree | 730459ce4da13f30028d2f7f33206347a85661d4 /meta/packages/powervr-drivers | |
parent | 3ec9a7de2a4e4c7c2b866f633d368100f4ec4809 (diff) | |
download | poky-b040233aa67e14d72759338b4636edb55b258bba.tar.gz |
omap3-sgx-modules: recipe to build sgx modules using the kbuild system from the GPL'ed imgtec sources (from OE.dev with added COMPATIBLE_MACHINE)
Diffstat (limited to 'meta/packages/powervr-drivers')
-rw-r--r-- | meta/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb b/meta/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb new file mode 100644 index 0000000000..22a55b278a --- /dev/null +++ b/meta/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found in the omap3 SoCs" | ||
2 | LICENSE = "GPLv2" | ||
3 | |||
4 | inherit module | ||
5 | |||
6 | SRC_URI = "http://dominion.thruhere.net/koen/OE/omap3-sgx-modules-1.3.13.1397.tar.bz2" | ||
7 | |||
8 | S = ${WORKDIR}/${PN}-${PV}/eurasiacon/build/linux/omap3430_linux/kbuild/ | ||
9 | |||
10 | MAKE_TARGETS = "BUILD=debug" | ||
11 | |||
12 | COMPATIBLE_MACHINE = "(omap-3430ldp|omap-3430sdp|beagleboard|overo)" | ||
13 | |||
14 | do_install() { | ||
15 | mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/drivers/gpu | ||
16 | cp ${WORKDIR}/${PN}-${PV}/eurasiacon/binary_omap3430_linux_debug/*.ko ${D}/lib/modules/${KERNEL_VERSION}/drivers/gpu | ||
17 | } | ||