blob: 5cab3b81d81ca02828e7d2ed0bd3adf76cad1e3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
DESCRIPTION = "This package contains the scripts necessary \
for hotplug Linux support, and lets you plug in new devices \
and use them immediately."
HOMEPAGE = "http://linux-hotplug.sourceforge.net/"
LICENSE = "GPL"
RPROVIDES_${PN} = "hotplug"
RCONFLICTS_${PN} = "hotplug"
RREPLACES_${PN} = "hotplug"
SECTION = "base"
RSUGGESTS = "pciutils usbutils"
PR = "r9"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz \
file://dash.patch;patch=1 \
file://userspecified_hcd.patch;patch=1 \
file://hotplug-net-agent-usb.patch;patch=1 \
file://usbrc-busybox.patch;patch=1 \
file://fix-net.agent \
file://update-usb.usermap \
file://logcheck-ignore \
file://sleeve.agent \
file://sleeve.rc \
file://mmc.agent \
file://usbd.agent \
file://usbd \
file://sysconfig-hotplug \
file://sysconfig-usb \
file://isapnp-exit.diff;patch=1 \
file://usb-storage \
file://soc.agent \
file://hotplug-binary-path.patch;patch=1"
SRC_URI_append_openzaurus = " file://quiet-pci.patch;patch=1"
S = "${WORKDIR}/hotplug-2004_09_20"
INITSCRIPT_NAME = "hotplug"
INITSCRIPT_PARAMS = "start 40 S . stop 89 0 6 ."
inherit update-rc.d
do_compile () {
:
}
oldmandir := "${mandir}"
oldsbindir := "${sbindir}"
prefix = ""
exec_prefix = ""
FILES_${PN} += "${oldsbindir}"
FILES_${PN}-doc += "${oldmandir}"
export DEBFIX = "sed -e 's:sysconfig/usb:default/hotplug.usb:'"
do_install () {
install -d ${D}${sysconfdir}/logcheck/ignore.d
install -d ${D}${oldmandir}
install -d ${D}${oldsbindir}
#install -d ${D}${sysconfdir}/default
oe_runmake prefix=${D}${prefix} exec_prefix=${D}${exec_prefix} \
etcdir=${D}${sysconfdir} sbindir=${D}${sbindir} \
mandir=${D}${oldmandir} INSTALL=install install
sh ${WORKDIR}/fix-net.agent ${D} || :
install -m 0755 ${WORKDIR}/update-usb.usermap ${D}${oldsbindir}/
install -m 0644 ${WORKDIR}/logcheck-ignore ${D}${sysconfdir}/logcheck/ignore.d/hotplug
install -m 0755 ${WORKDIR}/sleeve.agent ${D}${sysconfdir}/hotplug/
install -m 0755 ${WORKDIR}/sleeve.rc ${D}${sysconfdir}/hotplug/
install -m 0755 ${WORKDIR}/mmc.agent ${D}${sysconfdir}/hotplug/
install -m 0755 ${WORKDIR}/usbd.agent ${D}${sysconfdir}/hotplug/
install -m 0755 ${WORKDIR}/soc.agent ${D}${sysconfdir}/hotplug/
#install -m 0755 ${WORKDIR}/usbd ${D}${sysconfdir}/default/usbd
install -d ${D}${sysconfdir}/sysconfig
install -m 0644 ${WORKDIR}/sysconfig-hotplug ${D}${sysconfdir}/sysconfig/hotplug
install -m 0644 ${WORKDIR}/sysconfig-usb ${D}${sysconfdir}/sysconfig/usb
install -m 0755 ${WORKDIR}/usb-storage ${D}${sysconfdir}/hotplug/usb
}
|