FreeBSD port of the AmdMsrTweaker program to adjust P-states for AMD 10h,

12h, and 15h family processors, originally written by Martin Kinkelin and
extended by Marcus Pollice.

WWW: https://github.com/danfe/amdmsrtweaker-lnx
This commit is contained in:
Alexey Dokuchaev 2017-02-25 02:47:55 +00:00
parent 6797201733
commit e6734dd903
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=434759
4 changed files with 47 additions and 1 deletions

View file

@ -28,6 +28,7 @@
SUBDIR += aird
SUBDIR += am-utils
SUBDIR += amazon-ssm-agent
SUBDIR += amdmsrtweaker
SUBDIR += amrstat
SUBDIR += amtc
SUBDIR += anacron
@ -91,7 +92,7 @@
SUBDIR += bchunk
SUBDIR += beadm
SUBDIR += beadm-devel
SUBDIR += beats
SUBDIR += beats
SUBDIR += bhyve-firmware
SUBDIR += bhyve-rc
SUBDIR += biosfont

View file

@ -0,0 +1,34 @@
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= amdmsrtweaker
PORTVERSION= 1.1
CATEGORIES= sysutils
MAINTAINER= danfe@FreeBSD.org
COMMENT= Tool to reprogram the P-states on various AMD CPUs and APUs
LICENSE= GPLv3
ONLY_FOR_ARCHS= i386 amd64
USE_GITHUB= yes
GH_PROJECT= ${PORTNAME}-lnx
GH_ACCOUNT= danfe
GH_TAGNAME= 6139b13
CXXFLAGS+= -Wall -Werror -pedantic
PLIST_FILES= sbin/amdmsrt
PORTDOCS= readme.txt
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/amdmsrt ${STAGEDIR}${PREFIX}/sbin
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1487988716
SHA256 (danfe-amdmsrtweaker-lnx-1.1-6139b13_GH0.tar.gz) = 023bf6d712ef6fcc1b2c370066585e80bf08a8104bc1e894c5868d529ca1147c
SIZE (danfe-amdmsrtweaker-lnx-1.1-6139b13_GH0.tar.gz) = 22723

View file

@ -0,0 +1,8 @@
FreeBSD port of the AmdMsrTweaker program to adjust P-states for AMD 10h,
12h, and 15h family processors, originally written by Martin Kinkelin and
extended by Marcus Pollice.
It has been tested with a 14h (AMD E-350) and a 15h (AMD A10-5700) CPUs,
but should work with all processors supported by AmdMsrTweaker.
WWW: https://github.com/danfe/amdmsrtweaker-lnx