diff options
author | Koen Kooi <koen@openembedded.org> | 2009-02-01 16:31:00 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-02-01 16:31:00 +0100 |
commit | 1e9f2ffb03a73ba553a20f74d2c61763ea06d0af (patch) | |
tree | 623fdbbf31679a69083f138994586d6396a6b914 /packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb | |
parent | 2bd5eec97b9eaeaed3bfe26263dcf9b46592452a (diff) |
omap3 sgx modules: rip out existing buildsystem and replace it with something that works
Diffstat (limited to 'packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb')
-rw-r--r-- | packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb b/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb index 10546867b8..eb577fccc1 100644 --- a/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb +++ b/packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb @@ -1,22 +1,24 @@ DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found in the omap3 SoCs" LICENSE = "GPLv2" -PR = "r4" +PR = "r5" inherit module SRC_URI = "http://dominion.thruhere.net/koen/OE/omap3-sgx-modules-${PV}.tar.bz2 \ file://0001-Compile-fixes-for-DSS2.patch;patch=1 \ + file://0001-New-build-system-for-SGX.patch;patch=1 \ " -MAKE_TARGETS = "BUILD=debug" +PVRBUILD = "release" + +MAKE_TARGETS = " BUILD=${PVRBUILD}" do_compile_prepend() { - cd ${S}/eurasiacon/build/linux/omap3430_linux/kbuild/ + find ${S} -name "*.*o" | xargs rm } do_install() { - cd ${S}/eurasiacon/build/linux/omap3430_linux/kbuild/ mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/gpu/pvr - cp ${WORKDIR}/${PN}-${PV}/eurasiacon/binary_omap3430_linux_debug/*.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/gpu/pvr + cp ${S}/pvrsrvkm.ko ${S}/services4/3rdparty/dc_omap3430_linux/omaplfb.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/gpu/pvr } |