diff options
author | abs <abs@pkgsrc.org> | 2002-09-04 14:56:13 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2002-09-04 14:56:13 +0000 |
commit | 15c62fbe9edea1e6bb03df273b89e3c0917e3cd6 (patch) | |
tree | 9665e1072c665298f99de4aaf4a36c6052627294 /devel | |
parent | b4a8c7d2c79868c2d9297f40f49f3fb19085d46f (diff) | |
download | pkgsrc-15c62fbe9edea1e6bb03df273b89e3c0917e3cd6.tar.gz |
Updated cpuflags to 0.32 (the 'no more chocolate for you' release)
Handle AXPpci33, from Bert Kiers
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/cpuflags.NetBSD | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 7e9da97772d..a893d7eda2d 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.31 2002/08/05 13:17:11 abs Exp $ +# $NetBSD: Makefile,v 1.32 2002/09/04 14:56:13 abs Exp $ # -DISTNAME= cpuflags-0.31 +DISTNAME= cpuflags-0.32 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD index 02de6211703..ada1c19e9ab 100755 --- a/devel/cpuflags/files/cpuflags.NetBSD +++ b/devel/cpuflags/files/cpuflags.NetBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.NetBSD,v 1.25 2002/07/30 22:05:14 abs Exp $ +# $NetBSD: cpuflags.NetBSD,v 1.26 2002/09/04 14:56:14 abs Exp $ if [ -x /sbin/sysctl ] ;then SYSCTL=/sbin/sysctl @@ -22,8 +22,8 @@ case $hw_machine_arch in alpha) # cpu0 at mainbus0: ID 0 (primary), 21164A-0 (unknown ... case "`egrep '^cpu0 ' /var/run/dmesg.boot`" in - *\ 21164A[-\ ]*) FLAGS="-mcpu=21164a" ;; - *\ 2106[46][-\ ]*) FLAGS="-mcpu=21064" ;; + *[\(\ ]21164A[-\ ]*) FLAGS="-mcpu=21164a" ;; + *[\(\ ]2106[46][-\ ]*) FLAGS="-mcpu=21064" ;; esac ;; |