diff options
author | abs <abs@pkgsrc.org> | 2002-07-30 22:05:14 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2002-07-30 22:05:14 +0000 |
commit | b37477d1e467c1262b7509e9027d92728a5c977f (patch) | |
tree | cc5cf3195d70d106dc3d866356976e640a947fa9 | |
parent | 2e29143b541b9aaf5e04564711f16b61671e889b (diff) | |
download | pkgsrc-b37477d1e467c1262b7509e9027d92728a5c977f.tar.gz |
Update cpuflags to 0.30:
Add 'DEC 3000 - M300' (21064-1) entry from Paul Mather
-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 f06289b2c6b..86194722e10 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.29 2002/07/19 09:31:05 abs Exp $ +# $NetBSD: Makefile,v 1.30 2002/07/30 22:05:14 abs Exp $ # -DISTNAME= cpuflags-0.29 +DISTNAME= cpuflags-0.30 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD index 6964496b7d4..02de6211703 100755 --- a/devel/cpuflags/files/cpuflags.NetBSD +++ b/devel/cpuflags/files/cpuflags.NetBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.NetBSD,v 1.24 2002/07/19 09:31:05 abs Exp $ +# $NetBSD: cpuflags.NetBSD,v 1.25 2002/07/30 22:05: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" ;; - *\ 21066\ *) FLAGS="-mcpu=21064" ;; + *\ 21164A[-\ ]*) FLAGS="-mcpu=21164a" ;; + *\ 2106[46][-\ ]*) FLAGS="-mcpu=21064" ;; esac ;; |