diff options
Diffstat (limited to 'sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe')
-rw-r--r-- | sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe b/sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe index efebef063c..05074d3f76 100644 --- a/sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe +++ b/sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe @@ -1,13 +1,25 @@ DESCRIPTION = "Driver for the SHARP CG-AG06 digital compact flash camera for linux ${PV}" -SECTION = "base" +SECTION = "kernel/modules" PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "CLOSED" +RDEPENDS = kernel (2.4.18-rmk7-pxa3-embedix)" +PR = "r1" -SRC_URI = "file://sharp-camera-2.4.18.tar.gz" -S = "${WORKDIR}/sharp-camera" +SRC_URI = "http://www.openzaurus.org/mirror/camera-modules-2.4.18-rmk7-pxa3-embedix.tar.bz2 \ + file://CE-AG06.dat \ + file://sharpzdc \ + file://sharpzdc.conf" +S = "${WORKDIR}" do_install() { - install -d ${D}/ - cp -a * ${D}/ + install -d ${D}/etc/pcmcia/cis + install -d ${D}/lib/modules/2.4.18-rmk7-pxa3-embedix/pcmcia + install -m 0644 ${WORKDIR}/CE-AG06.dat ${D}/etc/pcmcia/cis/ + install -m 0644 ${WORKDIR}/sharpzdc.conf ${D}/etc/pcmcia/ + install -m 0755 ${WORKDIR}/sharpzdc ${D}/etc/pcmcia/ + install -m 0644 sharpzdc_cs.o ${D}/lib/modules/2.4.18-rmk7-pxa3-embedix/pcmcia/ } FILES_${PN} = "/" + |