diff options
Diffstat (limited to 'recipes/pwc/pwc_10.0.9-rc1.bb')
-rw-r--r-- | recipes/pwc/pwc_10.0.9-rc1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes/pwc/pwc_10.0.9-rc1.bb b/recipes/pwc/pwc_10.0.9-rc1.bb new file mode 100644 index 0000000000..6067c0b1aa --- /dev/null +++ b/recipes/pwc/pwc_10.0.9-rc1.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "Philips USB Webcam driver for Linux that supports VGA resolution" +PRIORITY = "optional" +SECTION = "kernel/modules" +LICENSE = "GPL" +PR = "r1" + +SRC_URI = "http://www.saillard.org/linux/pwc/files/pwc-${PV}.tar.bz2 \ + file://Makefile" + +S = "${WORKDIR}/pwc-${PV}" + +inherit module + +do_compile_prepend() { + cp -f ${WORKDIR}/Makefile ${S}/ +} + +do_compile () { + unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS + oe_runmake 'KDIR=${STAGING_KERNEL_DIR}' \ + 'CC=${KERNEL_CC}' \ + 'LD=${KERNEL_LD}' +} + +do_install() { + install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media + install -m 0644 *${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media +} + |