wok-6.x annotate udev/stuff/udev.conf @ rev 7593
Busybox config change: unset CONFIG_AR (it conflict with binutils ar) & unset CONFIG_XZ (only unxz is actually usefull - it appears that lzma legacy is our better compression tool)
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Fri Dec 10 19:35:10 2010 +0100 (2010-12-10) |
parents | |
children | 9e1674525e2f |
rev | line source |
---|---|
pankso@5 | 1 # /etc/udev/udev.conf - The main config file for udev |
pankso@5 | 2 # |
pankso@5 | 3 # This file can be used to override some of udev's default values |
pankso@5 | 4 # for where it looks for files, and where it places device nodes. |
pankso@5 | 5 |
pankso@5 | 6 |
pankso@5 | 7 # udev_root - where in the filesystem to place the device nodes |
pankso@5 | 8 udev_root="/dev/" |
pankso@5 | 9 |
pankso@5 | 10 # udev_db - The name and location of the udev database. |
pankso@5 | 11 udev_db="/dev/.udev.tdb" |
pankso@5 | 12 |
pankso@5 | 13 # udev_rules - The name and location of the udev rules dir |
pankso@5 | 14 udev_rules="/etc/udev/rules.d" |
pankso@5 | 15 |
pankso@5 | 16 # default_mode - set the default mode for all nodes that have no |
pankso@5 | 17 # explicit match in the permissions file |
pankso@5 | 18 default_mode="0660" |
pankso@5 | 19 |
pankso@5 | 20 # default_owner - set the default owner for all nodes that have no |
pankso@5 | 21 # explicit match in the permissions file |
pankso@5 | 22 default_owner="root" |
pankso@5 | 23 |
pankso@5 | 24 # default_group - set the default group for all nodes that have no |
pankso@5 | 25 # explicit match in the permissions file |
pankso@5 | 26 default_group="root" |
pankso@5 | 27 |
pankso@5 | 28 # udev_log - set to "yes" if you want logging, else "no" |
pankso@5 | 29 udev_log="no" |