From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 57331138331 for ; Wed, 5 Oct 2016 16:42:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C71521C075; Wed, 5 Oct 2016 16:42:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3FFBA21C075 for ; Wed, 5 Oct 2016 16:42:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED106341159 for ; Wed, 5 Oct 2016 16:42:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99DE024A7 for ; Wed, 5 Oct 2016 16:42:31 +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: <1475685700.a13f2b91b2e5337d659844be19fd302a0f21b288.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:0.22.x commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/sysfs.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: a13f2b91b2e5337d659844be19fd302a0f21b288 X-VCS-Branch: 0.22.x Date: Wed, 5 Oct 2016 16:42:31 +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: bcff2b3a-d0d2-4869-91be-abc6c0b09f0b X-Archives-Hash: 3f709950ccd76a42a9e162dc19937721 commit: a13f2b91b2e5337d659844be19fd302a0f21b288 Author: William Hubbs gmail com> AuthorDate: Tue Oct 4 23:18:05 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Oct 5 16:41:40 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=a13f2b91 init.d/sysfs: fix efivarfs module test init.d/sysfs.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/sysfs.in b/init.d/sysfs.in index acaae16..7183e5d 100644 --- a/init.d/sysfs.in +++ b/init.d/sysfs.in @@ -99,7 +99,7 @@ mount_misc() fi # set up kernel support for efivarfs - if [ ! -d /sys/module/efivarfs ] && modprobe -q efivarfs; then + if [ ! -d /sys/firmware/efi/efivars ] && modprobe -q efivarfs; then ewarn "The efivarfs module needs to be configured in " \ "@SYSCONFDIR@/conf.d/modules or built in" fi