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 F0E29138010 for ; Sat, 20 Oct 2012 02:02:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 117F021C01D; Sat, 20 Oct 2012 02:02:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8AD2F21C01D for ; Sat, 20 Oct 2012 02:02:47 +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 C34A633D751 for ; Sat, 20 Oct 2012 02:02:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 42952E5436 for ; Sat, 20 Oct 2012 02:02:45 +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: <1350698026.2a9de2df5825708f67cb2decbe0368bad2ae3dd2.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master 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: 2a9de2df5825708f67cb2decbe0368bad2ae3dd2 X-VCS-Branch: master Date: Sat, 20 Oct 2012 02:02:45 +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: df010d0d-5d3b-40b8-b889-cd8fe7d87700 X-Archives-Hash: b2f9275e6d872585bb6f9a2031362633 commit: 2a9de2df5825708f67cb2decbe0368bad2ae3dd2 Author: William Hubbs gmail com> AuthorDate: Sat Oct 20 01:53:46 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Oct 20 01:53:46 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=2a9de2df 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 }