diff options
author | greg@kroah.com <greg@kroah.com> | 2003-12-03 01:08:46 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:05 -0700 |
commit | e8bacccab296d6b75c4c9f43cb4e71007aff5b8a (patch) | |
tree | ad65d8917550ec7e8addf84816e16452fd722986 /udev.conf | |
parent | 29b82deb7e8d7634792bd50be1377bae170a8acb (diff) |
[PATCH] add support for a main udev config file, udev.conf.
the older udev.config file is now called udev.rules.
This allows us to better control configuration values, and move away from
the environment variables.
Diffstat (limited to 'udev.conf')
-rw-r--r-- | udev.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/udev.conf b/udev.conf new file mode 100644 index 0000000000..aadaea8a24 --- /dev/null +++ b/udev.conf @@ -0,0 +1,23 @@ +# udev.conf +# The main config file for udev +# +# This file can be used to override some of udev's default values +# for where it looks for files, and where it places device nodes. + + +# udev_root - where in the filesystem to place the device nodes +udev_root="/udev/" + +# udev_db - The name and location of the udev database. +udev_db="/udev/.udev.tdb" + +# udev_rules - The name and location of the udev rules file +udev_rules="/etc/udev/udev.rules" + +# udev_permissions - The name and location of the udev permission file +udev_permissions="/etc/udev/udev.permissions" + +# default_mode - set the default mode for all nodes that have no +# explicit match in the permissions file +default_mode="0666" + |