diff options
author | Koen Kooi <koen@openembedded.org> | 2009-01-21 20:52:47 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-01-21 20:52:47 +0100 |
commit | 69241c097a3ebf3c3797d792069eb7f71f0a2b76 (patch) | |
tree | 255b268673775f32f55bb3da74fc6a35ad0404d8 /packages/powervr-drivers/omap3-sgx-modules_1.3.13.1397.bb | |
parent | f18b0303e6cd2e643b2903da323af725a238ca78 (diff) |
omap3 sgx drivers: fix initscript, fix S in kernel recipe
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 | 13 |
1 files changed, 9 insertions, 4 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 01208275ac..20bce6091c 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,17 +1,22 @@ DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found in the omap3 SoCs" LICENSE = "GPLv2" -PR = "r2" +PR = "r3" inherit module -SRC_URI = "http://dominion.thruhere.net/koen/OE/omap3-sgx-modules-1.3.13.1397.tar.bz2" - -S = ${WORKDIR}/${PN}-${PV}/eurasiacon/build/linux/omap3430_linux/kbuild/ +SRC_URI = "http://dominion.thruhere.net/koen/OE/omap3-sgx-modules-${PV}.tar.bz2 \ +# file://0001-Compile-fixes-for-DSS2.patch;patch=1 \ +" MAKE_TARGETS = "BUILD=debug" +do_compile_prepend() { + cd ${S}/eurasiacon/build/linux/omap3430_linux/kbuild/ +} + 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 } |