diff options
author | abs <abs@pkgsrc.org> | 2002-11-02 10:03:45 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2002-11-02 10:03:45 +0000 |
commit | d60de2280cfab6ff51d8106d0e35cf075313cdfa (patch) | |
tree | 802fcbc7d4e2ebb2e497268cea05808d5a39e2ae /devel/cpuflags/files | |
parent | fed58d41651057368bc7a5a560d4682163a7a193 (diff) | |
download | pkgsrc-d60de2280cfab6ff51d8106d0e35cf075313cdfa.tar.gz |
Update cpuflags to 0.37
Recognise more alpha CPU variants - from Christopher SEKIYA
Diffstat (limited to 'devel/cpuflags/files')
-rwxr-xr-x | devel/cpuflags/files/cpuflags.NetBSD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD index 399270927e5..78e3e7c5026 100755 --- a/devel/cpuflags/files/cpuflags.NetBSD +++ b/devel/cpuflags/files/cpuflags.NetBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.NetBSD,v 1.30 2002/10/21 16:36:59 abs Exp $ +# $NetBSD: cpuflags.NetBSD,v 1.31 2002/11/02 10:03:46 abs Exp $ if [ -x /sbin/sysctl ] ;then SYSCTL=/sbin/sysctl @@ -22,10 +22,10 @@ case $hw_machine_arch in alpha) # cpu0 at mainbus0: ID 0 (primary), 21164A-0 (unknown ... case "`egrep '^cpu0 ' /var/run/dmesg.boot`" in - *[\(\ ]2106[46][-\ ]*) FLAGS="-mcpu=21064" ;; - *[\(\ ]21164[-\ ]*) FLAGS="-mcpu=21164" ;; - *[\(\ ]21164A[-\ ]*) FLAGS="-mcpu=21164a" ;; - *[\(\ ]21264B[-\ ]*) FLAGS="-mcpu=21264" ;; + *[\(\ ]2106[46][-\ \)]*) FLAGS="-mcpu=21064" ;; + *[\(\ ]21164[-\ \)]*) FLAGS="-mcpu=21164" ;; + *[\(\ ]21164A[-\ \)]*) FLAGS="-mcpu=21164a" ;; + *[\(\ ]21264B[-\ \)]*) FLAGS="-mcpu=21264" ;; esac ;; |