diff options
author | abs <abs> | 2002-07-30 22:05:14 +0000 |
---|---|---|
committer | abs <abs> | 2002-07-30 22:05:14 +0000 |
commit | 49cf3f06e99af421946db129ee3319f8087a9e8b (patch) | |
tree | cc5cf3195d70d106dc3d866356976e640a947fa9 /devel/cpuflags/files | |
parent | 83c14e1af718b05f19fdd950d6c3993271d39bc1 (diff) | |
download | pkgsrc-49cf3f06e99af421946db129ee3319f8087a9e8b.tar.gz |
Update cpuflags to 0.30:
Add 'DEC 3000 - M300' (21064-1) entry from Paul Mather
Diffstat (limited to 'devel/cpuflags/files')
-rwxr-xr-x | devel/cpuflags/files/cpuflags.NetBSD | 6 |
1 files changed, 3 insertions, 3 deletions
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 ;; |