diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /hotplug | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'hotplug')
-rw-r--r-- | hotplug/hotplug_20030501.oe | 2 | ||||
-rw-r--r-- | hotplug/hotplug_20030805.oe | 4 | ||||
-rw-r--r-- | hotplug/hotplug_20040105.oe | 18 |
3 files changed, 21 insertions, 3 deletions
diff --git a/hotplug/hotplug_20030501.oe b/hotplug/hotplug_20030501.oe index 9ba39c5cd4..482202f26c 100644 --- a/hotplug/hotplug_20030501.oe +++ b/hotplug/hotplug_20030501.oe @@ -1,6 +1,6 @@ SRC_URI = ${SOURCEFORGE_MIRROR}/linux-hotplug/hotplug-2003_05_01.tar.gz \ file://${FILESDIR}/busybox.patch;patch=1 -S = ${WORKDIR}/hotplug-2003_05_01 +S = "${WORKDIR}/hotplug-2003_05_01" do_compile () { oenote "Nothing to compile." diff --git a/hotplug/hotplug_20030805.oe b/hotplug/hotplug_20030805.oe index f5a4e5a699..8f3113faed 100644 --- a/hotplug/hotplug_20030805.oe +++ b/hotplug/hotplug_20030805.oe @@ -1,12 +1,12 @@ SRC_URI = ${SOURCEFORGE_MIRROR}/linux-hotplug/hotplug-2003_08_05.tar.gz \ file://${FILESDIR}/busybox.patch;patch=1 -S = ${WORKDIR}/hotplug-2003_08_05 +S = "${WORKDIR}/hotplug-2003_08_05" do_compile () { oenote "Nothing to compile." } -DEBFIX=sed -e 's:sysconfig/usb:default/hotplug.usb:' +DEBFIX = "sed -e 's:sysconfig/usb:default/hotplug.usb:'" do_install () { install -d ${D}/sbin ${D}/${sysconfdir}/hotplug \ ${D}/${sysconfdir}/logcheck/ignore.d \ diff --git a/hotplug/hotplug_20040105.oe b/hotplug/hotplug_20040105.oe index e69de29bb2..96cd805517 100644 --- a/hotplug/hotplug_20040105.oe +++ b/hotplug/hotplug_20040105.oe @@ -0,0 +1,18 @@ +SRC_URI = ${SOURCEFORGE_MIRROR}/linux-hotplug/hotplug-2004_01_05.tar.gz \ + file://${FILESDIR}/busybox.patch;patch=1 +S = "${WORKDIR}/hotplug-2004_01_05" + +do_compile () { + oenote "Nothing to compile." +} + +DEBFIX = "sed -e 's:sysconfig/usb:default/hotplug.usb:'" +do_install () { + install -d ${D}/sbin ${D}/${sysconfdir}/hotplug \ + ${D}/${sysconfdir}/logcheck/ignore.d \ + ${D}/${sbindir} + oe_runmake prefix=${D} install + sh debian/fix-net.agent ${D} + install -m 0755 debian/update-usb.usermap ${D}/${sbindir}/ + install -m 0644 debian/logcheck-ignore ${D}/${sysconfdir}/logcheck/ignore.d/hotplug +} |