summaryrefslogtreecommitdiff
path: root/packages/udev/udev-089/local.rules
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2006-10-31 15:54:33 +0000
committerMichael Lauer <mickey@vanille-media.de>2006-10-31 15:54:33 +0000
commit191f6ccfc8a95aae3cddf729ba27175e6e1fcda4 (patch)
treef5649cb12469dbf3b2c5b3e6b581537811d0faa5 /packages/udev/udev-089/local.rules
parentfcd0c98b96d5b27573f7ca346ba522ec8692ae6c (diff)
udev: fix udev rule for SAMSUNG UARTS (stupid missing ',' in rule!)
udev: remove 084 and 089, but keep 092 which seems to be pretty solid
Diffstat (limited to 'packages/udev/udev-089/local.rules')
-rw-r--r--packages/udev/udev-089/local.rules28
1 files changed, 0 insertions, 28 deletions
diff --git a/packages/udev/udev-089/local.rules b/packages/udev/udev-089/local.rules
deleted file mode 100644
index bb8459ba23..0000000000
--- a/packages/udev/udev-089/local.rules
+++ /dev/null
@@ -1,28 +0,0 @@
-# There are a number of modifiers that are allowed to be used in some
-# of the different fields. They provide the following subsitutions:
-#
-# %n the "kernel number" of the device.
-# For example, 'sda3' has a "kernel number" of '3'
-# %e the smallest number for that name which does not matches an existing node
-# %k the kernel name for the device
-# %M the kernel major number for the device
-# %m the kernel minor number for the device
-# %b the bus id for the device
-# %c the string returned by the PROGRAM
-# %s{filename} the content of a sysfs attribute
-# %% the '%' char itself
-#
-
-# Media automounting
-SUBSYSTEM=="block", ACTION=="add" RUN+="/etc/udev/scripts/mount.sh"
-SUBSYSTEM=="block", ACTION=="remove" RUN+="/etc/udev/scripts/mount.sh"
-
-# Handle network interface setup
-SUBSYSTEM=="net", ACTION=="add" RUN+="/etc/udev/scripts/network.sh"
-SUBSYSTEM=="net", ACTION=="remove" RUN+="/etc/udev/scripts/network.sh"
-
-# The first rtc device is symlinked to /dev/rtc
-KERNEL="rtc0", SYMLINK="rtc"
-
-# Try and modprobe for drivers for new hardware
-ACTION="add", DEVPATH="/devices/*", MODALIAS=="?*", RUN+="/sbin/modprobe $modalias"