summaryrefslogtreecommitdiff
path: root/conf.d
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2011-07-09 16:53:59 -0500
committerWilliam Hubbs <williamh@gentoo.org>2011-07-12 10:50:02 -0500
commitd92848ed41befd692551afe9cd016cb87f7981a1 (patch)
treeeacc948734cfb551ff14f63dcac21ce0f78da5ca /conf.d
parentfix permissions on rules and modprobe configurations (diff)
downloadudev-gentoo-scripts-d92848ed41befd692551afe9cd016cb87f7981a1.tar.gz
udev-gentoo-scripts-d92848ed41befd692551afe9cd016cb87f7981a1.tar.bz2
udev-gentoo-scripts-d92848ed41befd692551afe9cd016cb87f7981a1.zip
Rearrange the directory structure
This removes the rc directory from the repository and renames the directories to more closely match where things are ultimately installed.
Diffstat (limited to 'conf.d')
-rw-r--r--conf.d/udev64
1 files changed, 64 insertions, 0 deletions
diff --git a/conf.d/udev b/conf.d/udev
new file mode 100644
index 0000000..7c3d3eb
--- /dev/null
+++ b/conf.d/udev
@@ -0,0 +1,64 @@
+# /etc/conf.d/udev: config file for udev
+
+# We discourage to disable persistent-net!!
+# this may lead to random interface naming
+
+# Disable adding new rules for persistent-net
+persistent_net_disable="no"
+
+# Disable adding new rules for persistent-cd
+# Disabling this will stop new cdrom devices to appear
+# as /dev/{cdrom,cdrw,dvd,dvdrw}
+persistent_cd_disable="no"
+
+# Set to "yes" if you want to save /dev to a tarball on shutdown
+# and restore it on startup. This is useful if you have a lot of
+# custom device nodes that udev does not handle/know about.
+#
+# As this option is fragile, we recommend you
+# to create your devices in /lib/udev/devices.
+# These will be copied to /dev on boot.
+#rc_device_tarball="NO"
+
+# udev can trigger coldplug events which cause services to start and
+# kernel modules to be loaded.
+# Services are deferred to start in the boot runlevel.
+# Set rc_coldplug="NO" if you don't want this.
+# If you want module coldplugging but not coldplugging of services then you
+# can disable service coldplugging in baselayout/openrc config files.
+# The setting is named different in different versions.
+# in /etc/rc.conf: rc_hotplug="!*" or
+# in /etc/conf.d/rc: rc_plug_services="!*"
+#rc_coldplug="YES"
+
+
+
+
+# Expert options:
+
+# Disable warning about unreliable kernel/udev combination
+#unreliable_kernel_warning="no"
+
+# Timeout in seconds to wait for processing of uevents at boot.
+# There should be no need to change this.
+#udev_settle_timeout="60"
+
+# Add extra command line options to udevd, use with care
+# udevd --help for possible values
+#udev_opts=""
+
+# Run udevd --debug and write output to /dev/.udev/udev.log
+# Should not be kept on as it fills diskspace slowly
+#udev_debug="YES"
+
+# Run udevadmin monitor to get a log of all events
+# in /dev/.udev/udevmonitor.log
+#udev_monitor="YES"
+
+# Keep udevmonitor running after populating /dev.
+#udev_monitor_keep_running="no"
+
+# Set cmdline options for udevmonitor.
+# could be some of --env --kernel --udev
+#udev_monitor_opts="--env"
+