wok diff eudev/stuff/udev.conf @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/eudev/stuff/udev.conf	Mon Mar 05 15:52:59 2018 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +# /etc/udev/udev.conf - The main config file for udev
     1.5 +#
     1.6 +# This file can be used to override some of udev's default values
     1.7 +# for where it looks for files, and where it places device nodes.
     1.8 +
     1.9 +
    1.10 +# udev_root - where in the filesystem to place the device nodes
    1.11 +udev_root="/dev/"
    1.12 +
    1.13 +# udev_db - The name and location of the udev database.
    1.14 +#udev_db="/run/udev/tdb"
    1.15 +
    1.16 +# udev_rules - The name and location of the udev rules dir
    1.17 +udev_rules="/etc/udev/rules.d"
    1.18 +
    1.19 +# default_mode - set the default mode for all nodes that have no
    1.20 +#                explicit match in the permissions file
    1.21 +default_mode="0660"
    1.22 +
    1.23 +# default_owner - set the default owner for all nodes that have no
    1.24 +#                 explicit match in the permissions file
    1.25 +default_owner="root"
    1.26 +
    1.27 +# default_group - set the default group for all nodes that have no
    1.28 +#                 explicit match in the permissions file
    1.29 +default_group="root"
    1.30 +
    1.31 +# udev_log - set to "yes" if you want logging, else "no"
    1.32 +udev_log="err"