diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-14 18:47:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-14 18:47:31 +0000 |
commit | 51b15bb2670f7264663b02295482a347f6529717 (patch) | |
tree | 991d3b1089f9fd49caed9d97d50b2bfbe428df4e | |
parent | bc1114029fc2e47147923b97c2b57da9662eecc2 (diff) |
recognize AppleKiwi
-rw-r--r-- | sys/arch/macppc/macppc/autoconf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/autoconf.c b/sys/arch/macppc/macppc/autoconf.c index 1b5f0c14439..ae61b1f487c 100644 --- a/sys/arch/macppc/macppc/autoconf.c +++ b/sys/arch/macppc/macppc/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.4 2002/06/09 04:13:13 drahn Exp $ */ +/* $OpenBSD: autoconf.c,v 1.5 2002/09/14 18:47:30 deraadt Exp $ */ /* * Copyright (c) 1996, 1997 Per Fogelstrom * Copyright (c) 1995 Theo de Raadt @@ -41,7 +41,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.4 2002/06/09 04:13:13 drahn Exp $ + * $Id: autoconf.c,v 1.5 2002/09/14 18:47:30 deraadt Exp $ */ /* @@ -560,6 +560,8 @@ findtype(s) static struct devmap devmap[] = { { "/pci@", NULL, T_BUS }, { "/pci", NULL, T_BUS }, + { "/AppleKiwi@",NULL, T_BUS }, + { "/AppleKiwi", NULL, T_BUS }, { "/mac-io@", NULL, T_BUS }, { "/mac-io", NULL, T_BUS }, { "/@", NULL, T_BUS }, |