diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-09-09 15:24:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-09-09 15:24:54 +0000 |
commit | 9d9d387556bdff12d73a54644d08bb9b1ec32ce3 (patch) | |
tree | 1e6ecdb0f9e4bb018bda09c23301c8d4083c475b /sys/arch | |
parent | bcf78cdd343e69919cb5a92b6cae181350a973ab (diff) |
/enet apparently maps to mc0; gwk ok
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/macppc/autoconf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/autoconf.c b/sys/arch/macppc/macppc/autoconf.c index 780d10c8c8b..2a2bf08f6c4 100644 --- a/sys/arch/macppc/macppc/autoconf.c +++ b/sys/arch/macppc/macppc/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.33 2007/06/01 23:14:06 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.34 2007/09/09 15:24:53 deraadt Exp $ */ /* * Copyright (c) 1996, 1997 Per Fogelstrom * Copyright (c) 1995 Theo de Raadt @@ -37,7 +37,7 @@ * from: Utah Hdr: autoconf.c 1.31 91/01/21 * * from: @(#)autoconf.c 8.1 (Berkeley) 6/10/93 - * $Id: autoconf.c,v 1.33 2007/06/01 23:14:06 deraadt Exp $ + * $Id: autoconf.c,v 1.34 2007/09/09 15:24:53 deraadt Exp $ */ /* @@ -138,6 +138,7 @@ findtype(char **s) { "/bcom5704@4", "bge0", T_IFACE }, { "/bcom5704@4,1", "bge1", T_IFACE }, { "/ethernet", "gem0", T_IFACE }, + { "/enet", "mc0", T_IFACE }, { NULL, NULL } }; struct devmap *dp = &devmap[0]; |