From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-904940-garchives=archives.gentoo.org@lists.gentoo.org> 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 5DDA8138330 for <garchives@archives.gentoo.org>; Tue, 4 Oct 2016 23:23:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59D6DE09B3; Tue, 4 Oct 2016 23:23:33 +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 3F101E09B3 for <gentoo-commits@lists.gentoo.org>; Tue, 4 Oct 2016 23:23:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9202F341076 for <gentoo-commits@lists.gentoo.org>; Tue, 4 Oct 2016 23:23:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2CCB244E for <gentoo-commits@lists.gentoo.org>; Tue, 4 Oct 2016 23:23:29 +0000 (UTC) From: "William Hubbs" <williamh@gentoo.org> 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" <williamh@gentoo.org> Message-ID: <1475623097.3d2c2f0b871944492036d04b0c220ccba1fa2dd5.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master 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: 3d2c2f0b871944492036d04b0c220ccba1fa2dd5 X-VCS-Branch: master Date: Tue, 4 Oct 2016 23:23:29 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 12d66f2b-52b6-4c5a-a70c-5e44e1c673b7 X-Archives-Hash: 493cdc7a22ecda93ca87a2cafa9e900c commit: 3d2c2f0b871944492036d04b0c220ccba1fa2dd5 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com> AuthorDate: Tue Oct 4 23:18:05 2016 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Tue Oct 4 23:18:17 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=3d2c2f0b 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