summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2012-10-19 20:53:46 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2012-10-19 21:50:51 -0500
commit463d4ef00a0a2e9423d375f8224ad140eb2b19a8 (patch)
tree745e28d5901b490e961ea747ec486c933f373936
parentb5629d4ea0767b597bd00bfbd63ebf51fb72b379 (diff)
downloadopenrc-463d4ef00a0a2e9423d375f8224ad140eb2b19a8.tar.gz
openrc-463d4ef00a0a2e9423d375f8224ad140eb2b19a8.tar.bz2
openrc-463d4ef00a0a2e9423d375f8224ad140eb2b19a8.tar.xz
devfs: Remove references to specific device managers
There were references in the devfs script to mdev, udev and udev-mount. These all provide the virtuals dev and dev-mount; that is how we should refer to them. I believe in the discussion I had with Tony and Robin about this, we were going to change the "use" line to "need". However, after thinking that over, I'm not comfortable doing so because someone could be running a static /dev with no device manager. Reported-by: <tokiclover@gmail.com> X-Gentoo-Bug: 438932 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=438932
-rw-r--r--init.d/devfs.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/devfs.in b/init.d/devfs.in
index 8d5bb48..9e31377 100644
--- a/init.d/devfs.in
+++ b/init.d/devfs.in
@@ -5,8 +5,8 @@
description="Mount system critical filesystems in /dev."
depend() {
- use dev-mount udev-mount
- before udev mdev
+ use dev-mount
+ before dev
keyword -prefix -vserver
}