diff options
author | 1995-12-01 17:57:34 +0000 | |
---|---|---|
committer | 1995-12-01 17:57:34 +0000 | |
commit | 50217ea8dccf1c722b49c27b7fbd3d4e3c8dbb46 (patch) | |
tree | 662c6db16e5d2c190f1bd190b73e910e60e6efc5 /sys | |
parent | niklas pointed out the new MDP_UNCACHE_WX might break fork/exec. (diff) | |
download | wireguard-openbsd-50217ea8dccf1c722b49c27b7fbd3d4e3c8dbb46.tar.xz wireguard-openbsd-50217ea8dccf1c722b49c27b7fbd3d4e3c8dbb46.zip |
for now, assume no flash on 167 (is this true?)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme68k/dev/flash.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/dev/flash.c b/sys/arch/mvme68k/dev/flash.c index 6b4c103d0cb..7f733086e45 100644 --- a/sys/arch/mvme68k/dev/flash.c +++ b/sys/arch/mvme68k/dev/flash.c @@ -1,4 +1,4 @@ -/* $Id: flash.c,v 1.3 1995/11/17 12:45:52 deraadt Exp $ */ +/* $Id: flash.c,v 1.4 1995/12/01 17:57:34 deraadt Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -112,6 +112,8 @@ flashmatch(parent, cf, args) */ if (cputyp == CPU_166) return (0); + if (cputyp == CPU_167) + return (0); #endif if (badpaddr(ca->ca_paddr, 1)) |