summaryrefslogtreecommitdiff
path: root/extras/run_directory/RFC-dev.d
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2005-08-09 20:11:26 +0200
committerKay Sievers <kay.sievers@suse.de>2005-08-09 20:11:26 +0200
commita37610d0f885ee301fd99757beb9fd7af729307f (patch)
treeeeb6913ba7c6a95f591b9b3db4f84b5277d791cd /extras/run_directory/RFC-dev.d
parent34c00c915c6dd9d063551732169cb3c3126376ad (diff)
remove example rules and put the dev.d stuff into the run_directory folder
The distro rules are the best example you can get and the use of dev.d/ is no longer recommended. Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'extras/run_directory/RFC-dev.d')
-rw-r--r--extras/run_directory/RFC-dev.d50
1 files changed, 50 insertions, 0 deletions
diff --git a/extras/run_directory/RFC-dev.d b/extras/run_directory/RFC-dev.d
new file mode 100644
index 0000000000..1aca1aa393
--- /dev/null
+++ b/extras/run_directory/RFC-dev.d
@@ -0,0 +1,50 @@
+ /etc/dev.d/ How it works, and what it is for
+
+ by Greg Kroah-Hartman <greg@kroah.com> March 2004
+
+The /etc/dev.d directory works much like the /etc/hotplug.d/ directory
+in that it is a place to put symlinks or programs that get called when
+an event happens in the system. Programs will get called whenever the
+device naming program in the system has either named a new device and
+created a /dev node for it, or when a /dev node has been removed from
+the system due to a device being removed.
+
+The directory tree under /etc/dev.d/ dictate which program is run first,
+and when some programs will be run or not. The device naming program
+calls the programs in the following order:
+ /etc/dev.d/DEVNAME/*.dev
+ /etc/dev.d/SUBSYSTEM/*.dev
+ /etc/dev.d/default/*.dev
+
+The .dev extension is needed to allow automatic package managers to
+deposit backup files in these directories safely.
+
+The DEVNAME name is the name of the /dev file that has been created, or
+for network devices, the name of the newly named network device. This
+value, including the /dev path, will also be exported to userspace in
+the DEVNAME environment variable.
+
+The SUBSYSTEM name is the name of the sysfs subsystem that originally
+generated the hotplug event that caused the device naming program to
+create or remove the /dev node originally. This value is passed to
+userspace as the first argument to the program.
+
+The default directory will always be run, to enable programs to catch
+every device add and remove in a single place.
+
+All environment variables that were originally passed by the hotplug
+call that caused this device action will also be passed to the program
+called in the /etc/dev.d/ directories. Examples of these variables are
+ACTION, DEVPATH, and others. See the hotplug documentation for full
+description of this
+
+An equivalent shell script that would do this same kind of action would
+be:
+ DIR="/etc/dev.d"
+ export DEVNAME="whatever_dev_name_udev_just_gave"
+ for I in "${DIR}/$DEVNAME/"*.dev "${DIR}/$1/"*.dev "${DIR}/default/"*.dev ; do
+ if [ -f $I ]; then $I $1 ; fi
+ done
+ exit 1;
+
+