From owner-svn-ports-all@freebsd.org Wed Nov 23 16:40:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 017BDC515AA; Wed, 23 Nov 2016 16:40:12 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C744810AD; Wed, 23 Nov 2016 16:40:11 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANGeBti030773; Wed, 23 Nov 2016 16:40:11 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANGeAXU030771; Wed, 23 Nov 2016 16:40:10 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201611231640.uANGeAXU030771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 23 Nov 2016 16:40:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426942 - in head/sysutils/acpi_call: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 16:40:12 -0000 Author: danfe Date: Wed Nov 23 16:40:10 2016 New Revision: 426942 URL: https://svnweb.freebsd.org/changeset/ports/426942 Log: When ioctl() on /dev/acpi fails with `Device not configured' message, suggest most probable cause of this to reduce number of questions on the mailing lists; slightly improve port description text while here. Added: head/sysutils/acpi_call/files/ head/sysutils/acpi_call/files/patch-acpi__call__util.c (contents, props changed) Modified: head/sysutils/acpi_call/pkg-descr Added: head/sysutils/acpi_call/files/patch-acpi__call__util.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/acpi_call/files/patch-acpi__call__util.c Wed Nov 23 16:40:10 2016 (r426942) @@ -0,0 +1,10 @@ +--- acpi_call_util.c.orig 2011-11-07 05:35:10 UTC ++++ acpi_call_util.c +@@ -102,6 +102,7 @@ int main(int argc, char * argv[]) + if (ioctl(fd, ACPIIO_CALL, ¶ms) == -1) + { + perror("ioctl"); ++ fprintf(stderr, "(Is `acpi_call.ko' kernel module loaded?)\n"); + return 1; + } + Modified: head/sysutils/acpi_call/pkg-descr ============================================================================== --- head/sysutils/acpi_call/pkg-descr Wed Nov 23 16:39:02 2016 (r426941) +++ head/sysutils/acpi_call/pkg-descr Wed Nov 23 16:40:10 2016 (r426942) @@ -1 +1 @@ -Kernel module for calling arbitrary ACPI methods from userspace. +Kernel module and utility for calling arbitrary ACPI methods from userspace.