summaryrefslogtreecommitdiff
path: root/devel/cpuflags
diff options
context:
space:
mode:
authorabs <abs>2005-04-27 10:55:21 +0000
committerabs <abs>2005-04-27 10:55:21 +0000
commit76d6e5576b6c8a4933b9c23598efcec4bf7ad894 (patch)
treec9ba142a0c505be62f6a2498414f05a7243c5a25 /devel/cpuflags
parent3d2b0416a62ae1c85d4cfee4a8fe5985613cb417 (diff)
downloadpkgsrc-76d6e5576b6c8a4933b9c23598efcec4bf7ad894.tar.gz
Update cpuflags to 0.85:
Add 'Intel(R) Pentium(R) III Mobile CPU', from Sean Higgins
Diffstat (limited to 'devel/cpuflags')
-rw-r--r--devel/cpuflags/Makefile4
-rwxr-xr-xdevel/cpuflags/files/cpuflags.Linux9
2 files changed, 7 insertions, 6 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile
index b2b5af99749..c0b1a2fe306 100644
--- a/devel/cpuflags/Makefile
+++ b/devel/cpuflags/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.87 2005/04/08 07:24:25 abs Exp $
+# $NetBSD: Makefile,v 1.88 2005/04/27 10:55:21 abs Exp $
#
-DISTNAME= cpuflags-0.84
+DISTNAME= cpuflags-0.85
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/devel/cpuflags/files/cpuflags.Linux b/devel/cpuflags/files/cpuflags.Linux
index ce1422ae28f..723436d6541 100755
--- a/devel/cpuflags/files/cpuflags.Linux
+++ b/devel/cpuflags/files/cpuflags.Linux
@@ -1,15 +1,15 @@
#!/bin/sh
-# $NetBSD: cpuflags.Linux,v 1.13 2005/04/08 07:24:25 abs Exp $
+# $NetBSD: cpuflags.Linux,v 1.14 2005/04/27 10:55:21 abs Exp $
PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH
AWK=awk
display_hw_details()
{
- echo " OS : '$(uname)'"
- echo " proc model : '$hw_model'"
+ echo " OS : '$(uname)'"
+ echo " proc model : '$hw_model'"
echo " machine_arch : '$hw_machine_arch'"
- echo " proc flags : '$hw_flags'"
+ echo " proc flags : '$hw_flags'"
}
hw_machine_arch=$(uname -m)
@@ -33,6 +33,7 @@ case $hw_machine_arch in
"AMD Athlon(tm) XP "*) FLAGS='-march=athlon-xp' ;;
"Celeron (Coppermine)") FLAGS='-march=pentium3' ;;
"Pentium III (Coppermine)") FLAGS='-march=pentium3' ;;
+ "Intel(R) Pentium(R) III Mobile CPU"*) FLAGS='-march=pentium3m' ;;
"Intel(R) Pentium(R) M processor"*) FLAGS='-march=pentium3m' ;;
"Intel(R) Pentium(R) 4 CPU "*) FLAGS='-march=pentium4' ;;
"Intel(R) Celeron(R) CPU "*)