summaryrefslogtreecommitdiff
path: root/rules/gentoo/30-kernel-compat.rules
blob: d07e7fa1c32d1ff34b4297dba18e3dac987206d9 (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
# do not edit this file, it will be overwritten on update

ACTION!="add|change", GOTO="kernel_compat_end"

#
# rules to workaround bad sysfs timing
#

ACTION!="add", GOTO="kernel_compat_wait_end"

# workarounds needed to synchronize with sysfs
# needed for kernels < v2.6.18-rc1
DEVPATH=="/devices/*", ENV{PHYSDEVBUS}=="?*", WAIT_FOR_SYSFS="bus"
SUBSYSTEM=="scsi", KERNEL=="[0-9]*:[0-9]*",    WAIT_FOR_SYSFS="ioerr_cnt"

# needed for kernels <2.6.16
SUBSYSTEM=="net", WAIT_FOR_SYSFS="address"

# needed for kernels <2.6.17
SUBSYSTEM=="net", ENV{PHYSDEVDRIVER}=="?*", WAIT_FOR_SYSFS="device/driver"

LABEL="kernel_compat_wait_end"

#
# naming device rules
#

# old style usb sysfs devices
# needed for kernels <2.6.22
SUBSYSTEM=="usb_device", PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev}; printf bus/usb/%%03i/%%03i $${K%%%%.*} $${K#*.}'", NAME="%c", GROUP="usb", MODE="0664"

# /sys/class/block will export this
# needed for kernels <2.6.25-rc1
SUBSYSTEM!="block", GOTO="block_devtype_end"
ENV{DEVTYPE}!="?*", ATTR{range}=="?*", ENV{DEVTYPE}="disk"
ENV{DEVTYPE}!="?*", ATTR{start}=="?*", ENV{DEVTYPE}="partition"
LABEL="block_devtype_end"


#
# module loading rules
#
ACTION!="add", GOTO="kernel_compat_end"

# this driver is broken and should not be loaded automatically
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=398962
# needed for kernels <2.6.21
SUBSYSTEM=="platform", ENV{MODALIAS}=="i82365", ENV{MODALIAS}=""

# No need for more code, as MODALIAS is present
ENV{MODALIAS}=="?*", GOTO="kernel_compat_end"

# needed for kernel <2.6.27-rc5
# acpi will do on newer kernels
SUBSYSTEM=="pnp", DRIVER!="?*", \
  RUN{ignore_error}+="/bin/sh -c '/sbin/modprobe -a $$(while read id; do echo pnp:d$$id; done < /sys$devpath/id)'"

# needed for kernels <2.6.22
SUBSYSTEM!="scsi_device", GOTO="kernel_compat_end"

	# Parts taken from redhat-rules
	# sd:           0 TYPE_DISK, 7 TYPE_MOD, 14 TYPE_RBC
	# sr:           4 TYPE_WORM, 5 TYPE_ROM
	# st/osst:      1 TYPE_TAPE

	ATTRS{type}=="0|7|14",	RUN+="/sbin/modprobe sd_mod"
	ATTRS{type}=="4|5",	RUN+="/sbin/modprobe sr_mod"
	ATTRS{type}=="8",	RUN+="/sbin/modprobe ch"

	ATTRS{type}=="1", ATTRS{vendor}=="On[sS]tream", \
		ATTRS{model}!="ADR*", RUN+="/sbin/modprobe osst", GOTO="kernel_compat_end"
	ATTRS{type}=="1", RUN+="/sbin/modprobe st"

LABEL="kernel_compat_end"