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 1A21A138010 for ; Wed, 26 Sep 2012 21:33:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41B2521C13B; Wed, 26 Sep 2012 21:33:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 13D0021C13B for ; Wed, 26 Sep 2012 21:33:25 +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 76E3C33CC9D for ; Wed, 26 Sep 2012 21:33:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2F391E544C for ; Wed, 26 Sep 2012 21:33:23 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1348695281.33c63ede78660598dcb8ba59034d0b5fe2d81884.robbat2@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: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 33c63ede78660598dcb8ba59034d0b5fe2d81884 X-VCS-Branch: master Date: Wed, 26 Sep 2012 21:33:23 +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: 17d9aea0-77fe-4e78-a199-6b540c74737f X-Archives-Hash: 1901cd54bf3fbddd52cd5775c0ca78e4 commit: 33c63ede78660598dcb8ba59034d0b5fe2d81884 Author: Robin H. Johnson gentoo org> AuthorDate: Wed Sep 26 21:32:19 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Sep 26 21:34:41 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=33c63ede init.d/devfs: Run after (u)dev-mount, before udev/mdev Using the new dev-mount virtual, with udev-mount included until new udev version is rolled out, we run devfs earlier now, before udev/mdev. It only needs (u)dev-mount before it, so that /dev is mounted. This opens the way for tmpfiles.d, which needs to be sandwiched in the middle. Signed-off-by: Robin H. Johnson gentoo.org> --- init.d/devfs.in | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/init.d/devfs.in b/init.d/devfs.in index 6a41354..8d5bb48 100644 --- a/init.d/devfs.in +++ b/init.d/devfs.in @@ -5,7 +5,8 @@ description="Mount system critical filesystems in /dev." depend() { - use dev + use dev-mount udev-mount + before udev mdev keyword -prefix -vserver }