Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jul 2015 08:26:52 +0000 (UTC)
From:      Bartek Rutkowski <robak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r392554 - in head/sysutils: . acerhdf-kmod
Message-ID:  <201507200826.t6K8QqGv048256@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: robak
Date: Mon Jul 20 08:26:51 2015
New Revision: 392554
URL: https://svnweb.freebsd.org/changeset/ports/392554

Log:
  sysutils/acerhdf-kmod: NEW PORT - Acer Aspire One fan control kernel module
  
  The acerhdf kernel module allows you to control the fans of some of
  the Acer Aspire One netbook models.  This includes the models Acer
  AO521, Acer AO531h, Acer AO751h Acer Aspire 1410, Acer Aspire 1810T,
  Acer Aspire 1810TZ, Acer Aspire 1825PTZ, Acer Aspire 5315, Acer Aspire
  5739G, Acer Aspire 5755G, Acer Aspire One 753, Acer Aspire One A110,
  Acer Aspire One A150, Acer Extensa 5420, Acer LT-10Q, Acer TM8573T,
  Acer TravelMate 7730G, Gateway AOA110, Gateway AOA150, Gateway LT31,
  Packard Bell AOA110, Packard Bell AOA150, Packard Bell DOA150, Packard
  Bell DOTMA, Packard Bell DOTMU, Packard Bell DOTVR46, and Packard Bell
  ENBFT.
  
  WWW: https://github.com/t6/kmod-acerhdf
  
  PR:		198716
  Submitted by:	Tobias Kortkamp <tobias.kortkamp@gmail.com >

Added:
  head/sysutils/acerhdf-kmod/
  head/sysutils/acerhdf-kmod/Makefile   (contents, props changed)
  head/sysutils/acerhdf-kmod/distinfo   (contents, props changed)
  head/sysutils/acerhdf-kmod/pkg-descr   (contents, props changed)
  head/sysutils/acerhdf-kmod/pkg-message   (contents, props changed)
  head/sysutils/acerhdf-kmod/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Mon Jul 20 08:26:03 2015	(r392553)
+++ head/sysutils/Makefile	Mon Jul 20 08:26:51 2015	(r392554)
@@ -13,6 +13,7 @@
     SUBDIR += abgx360
     SUBDIR += abgx360gui
     SUBDIR += accountsservice
+    SUBDIR += acerhdf-kmod
     SUBDIR += acpi_call
     SUBDIR += acpica-tools
     SUBDIR += acts

Added: head/sysutils/acerhdf-kmod/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/acerhdf-kmod/Makefile	Mon Jul 20 08:26:51 2015	(r392554)
@@ -0,0 +1,32 @@
+# Created by: Tobias Kortkamp <tobias.kortkamp@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	acerhdf-kmod
+PORTVERSION=	0.1.1
+DISTVERSIONPREFIX=	v
+CATEGORIES=	sysutils
+
+MAINTAINER=	tobias.kortkamp@gmail.com
+COMMENT=	Acer Aspire One fan control
+
+LICENSE=	GPLv2
+
+USES=		kmod
+KMODNAME=	acerhdf
+MANDIR=		${PREFIX}/man/man4
+
+USE_GITHUB=	yes
+GH_PROJECT=	kmod-acerhdf
+GH_ACCOUNT=	t6
+
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000
+IGNORE=		does not support FreeBSD versions older than 10.1
+.endif
+
+do-install:
+	${INSTALL_MAN} ${WRKSRC}/${KMODNAME}.4 ${STAGEDIR}${MANDIR}
+	${INSTALL_KLD} ${WRKSRC}/${KMODNAME}.ko ${STAGEDIR}${KMODDIR}
+
+.include <bsd.port.post.mk>

Added: head/sysutils/acerhdf-kmod/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/acerhdf-kmod/distinfo	Mon Jul 20 08:26:51 2015	(r392554)
@@ -0,0 +1,2 @@
+SHA256 (t6-kmod-acerhdf-v0.1.1_GH0.tar.gz) = 2947bfa7714eee18d5498b768bca90fed7dd1e720d4ef124245268f54576b1d5
+SIZE (t6-kmod-acerhdf-v0.1.1_GH0.tar.gz) = 7594

Added: head/sysutils/acerhdf-kmod/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/acerhdf-kmod/pkg-descr	Mon Jul 20 08:26:51 2015	(r392554)
@@ -0,0 +1,12 @@
+The acerhdf kernel module allows you to control the fans of some of
+the Acer Aspire One netbook models.  This includes the models Acer
+AO521, Acer AO531h, Acer AO751h Acer Aspire 1410, Acer Aspire 1810T,
+Acer Aspire 1810TZ, Acer Aspire 1825PTZ, Acer Aspire 5315, Acer Aspire
+5739G, Acer Aspire 5755G, Acer Aspire One 753, Acer Aspire One A110,
+Acer Aspire One A150, Acer Extensa 5420, Acer LT-10Q, Acer TM8573T,
+Acer TravelMate 7730G, Gateway AOA110, Gateway AOA150, Gateway LT31,
+Packard Bell AOA110, Packard Bell AOA150, Packard Bell DOA150, Packard
+Bell DOTMA, Packard Bell DOTMU, Packard Bell DOTVR46, and Packard Bell
+ENBFT.
+
+WWW: https://github.com/t6/kmod-acerhdf

Added: head/sysutils/acerhdf-kmod/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/acerhdf-kmod/pkg-message	Mon Jul 20 08:26:51 2015	(r392554)
@@ -0,0 +1,11 @@
+The acerhdf fan control is disabled by default.  To enable it add the
+following settings to /boot/loader.conf
+
+   acerhdf_load="YES"
+   
+and to /etc/sysctl.conf
+
+   dev.acerhdf.0.enabled=1
+
+Refer to acerhdf(4) for additonal settings.  Choose wisely and be
+careful that your system does not overheat!

Added: head/sysutils/acerhdf-kmod/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/acerhdf-kmod/pkg-plist	Mon Jul 20 08:26:51 2015	(r392554)
@@ -0,0 +1,2 @@
+/%%KMODDIR%%/acerhdf.ko
+man/man4/acerhdf.4.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507200826.t6K8QqGv048256>