From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B17E4138010 for ; Sat, 20 Oct 2012 02:53:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82D6CE0540; Sat, 20 Oct 2012 02:53:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0DD92E0540 for ; Sat, 20 Oct 2012 02:53:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7296933D7F3 for ; Sat, 20 Oct 2012 02:53:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1151AE5436 for ; Sat, 20 Oct 2012 02:53:08 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1350701451.463d4ef00a0a2e9423d375f8224ad140eb2b19a8.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:openrc-0.11.x commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/devfs.in X-VCS-Directories: init.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 463d4ef00a0a2e9423d375f8224ad140eb2b19a8 X-VCS-Branch: openrc-0.11.x Date: Sat, 20 Oct 2012 02:53:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c2984359-706b-44ac-a844-c61bff23526a X-Archives-Hash: e6087552290855a067f02fd80be69bd4 commit: 463d4ef00a0a2e9423d375f8224ad140eb2b19a8 Author: William Hubbs gmail com> AuthorDate: Sat Oct 20 01:53:46 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Oct 20 02:50:51 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=463d4ef0 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: gmail.com> X-Gentoo-Bug: 438932 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=438932 --- init.d/devfs.in | 4 ++-- 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 }