aboutsummaryrefslogtreecommitdiffstats
path: root/packages/linux-hotplug/linux-hotplug_20040920.bb
blob: c6bcbb66e67bcb1cbdd9e28e8388a1f4216566b8 (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
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 = "r8"

SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz \
	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"

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
}