diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-10-11 15:27:01 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-10-11 15:27:01 +0000 |
commit | 96379cf2ff7c66a2ab2f1e57e17c88b9860e5c75 (patch) | |
tree | 5dd3a09472cbb893b377b709c4baabced7e7ee9b /sharp-binary-only/sharp-camera-support_2.4.18-rmk7-pxa3-embedix.oe | |
parent | da9e38236f66050e87d8bd2c8f05f2326282aa58 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages
2004/10/11 17:26:48+02:00 uni-frankfurt.de!mickeyl
remove the binary camera module and put the drivers to openzaurus.org
BKrev: 416aa645oz9jXdA8XGBQsHDKngaXHg
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} = "/" + |