diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-09-04 21:53:25 +0800 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-09-04 21:53:25 +0800 |
commit | ba524edcd66b05bd3f6482b252cad7c562aa394e (patch) | |
tree | 565c07b5d11f6d4150f008ce964ee8b630107592 /sysutils | |
parent | 184cce40686a515c020939cb3da79bd887888325 (diff) | |
download | freebsd-ports-gnome-ba524edcd66b05bd3f6482b252cad7c562aa394e.tar.gz freebsd-ports-gnome-ba524edcd66b05bd3f6482b252cad7c562aa394e.tar.zst freebsd-ports-gnome-ba524edcd66b05bd3f6482b252cad7c562aa394e.zip |
- Add patch to teach this port to read MSRs for centrino cpu model 13.
- bump PORTREVISION.
PR: ports/102452
Submitted by: Stanislav Sedov
Approved by: Erik Greenwald (maintainer)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/x86info/Makefile | 1 | ||||
-rw-r--r-- | sysutils/x86info/files/patch-Intel_info.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/x86info/Makefile b/sysutils/x86info/Makefile index 233eb1b11a3e..d323ae27d47d 100644 --- a/sysutils/x86info/Makefile +++ b/sysutils/x86info/Makefile @@ -7,6 +7,7 @@ PORTNAME= x86info PORTVERSION= 1.18 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.codemonkey.org.uk/projects/x86info/ \ ${MASTER_SITE_SOURCEFORGE} diff --git a/sysutils/x86info/files/patch-Intel_info.c b/sysutils/x86info/files/patch-Intel_info.c new file mode 100644 index 000000000000..fcb768cd51d1 --- /dev/null +++ b/sysutils/x86info/files/patch-Intel_info.c @@ -0,0 +1,11 @@ +--- Intel/info.c.orig Thu Aug 24 01:24:35 2006 ++++ Intel/info.c Thu Aug 24 01:25:13 2006 +@@ -35,7 +35,7 @@ + if (show_msr) { + if (cpu->family==0xf) + dump_p4_MSRs(cpu); +- if (cpu->family==0x6 && cpu->model==9) ++ if (cpu->family==0x6 && (cpu->model == 9 || cpu->model == 13)) + dump_centrino_MSRs(cpu); + } + |