diff options
author | 1999-11-28 23:36:16 +0000 | |
---|---|---|
committer | 1999-11-28 23:36:16 +0000 | |
commit | d8ccae551e77885a36f61245c5d699d55856b011 (patch) | |
tree | 470086216807c2e0df3282af4ddea94dfbf37bce | |
parent | Make the default system type to be APPL for these kernels. probably (diff) | |
download | wireguard-openbsd-d8ccae551e77885a36f61245c5d699d55856b011.tar.xz wireguard-openbsd-d8ccae551e77885a36f61245c5d699d55856b011.zip |
Add recognition support for powerbook, it is reported to work with
ethernet and disk now.
-rw-r--r-- | sys/arch/powerpc/powerpc/machdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/machdep.c b/sys/arch/powerpc/powerpc/machdep.c index 99197a31a16..46e5db99be3 100644 --- a/sys/arch/powerpc/powerpc/machdep.c +++ b/sys/arch/powerpc/powerpc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.28 1999/11/09 04:38:17 rahnds Exp $ */ +/* $OpenBSD: machdep.c,v 1.29 1999/11/28 23:36:16 rahnds Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -914,6 +914,7 @@ systype(char *name) { "V-I Power", "(POWER4e) V-I ppc vme boards ", POWER4e}, { "iMac", "(APPL) Apple iMac ", APPL}, { "PowerMac", "(APPL) Apple PowerMac ", APPL}, + { "PowerBook", "(APPL) Apple Powerbook ", APPL}, { NULL,"",0} }; for (i = 0; systypes[i].name != NULL; i++) { |