diff options
author | 2010-03-07 13:44:24 +0000 | |
---|---|---|
committer | 2010-03-07 13:44:24 +0000 | |
commit | 29c3a013491fb0d60606425c060d8ee29b1593cc (patch) | |
tree | 89046d0421a5f6d06ba76d52bc5d7ac2cdd5b88e /sys/arch/sgi/dev/gbe.c | |
parent | On Origin-like systems, get glass console information (if any) from the (diff) | |
download | wireguard-openbsd-29c3a013491fb0d60606425c060d8ee29b1593cc.tar.xz wireguard-openbsd-29c3a013491fb0d60606425c060d8ee29b1593cc.zip |
Allow iockbc(4) and odysseey(4) to act as console devices and attach early;
this gives us working glass console on Fuel, as well as on Octane systems
with Odyssey graphics.
Joint work with jsing@
Diffstat (limited to 'sys/arch/sgi/dev/gbe.c')
-rw-r--r-- | sys/arch/sgi/dev/gbe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/dev/gbe.c b/sys/arch/sgi/dev/gbe.c index 4c2abf3529d..bb1d77865cb 100644 --- a/sys/arch/sgi/dev/gbe.c +++ b/sys/arch/sgi/dev/gbe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gbe.c,v 1.10 2009/10/26 20:14:42 miod Exp $ */ +/* $OpenBSD: gbe.c,v 1.11 2010/03/07 13:44:24 miod Exp $ */ /* * Copyright (c) 2007, 2008, 2009 Joel Sing <jsing@openbsd.org> @@ -1375,5 +1375,5 @@ gbe_cnattach(bus_space_tag_t iot, bus_addr_t addr) wsdisplay_cnattach(&gbe_stdscreen, &gbe_consdata.ri, 0, 0, attr); gbe_console = 1; - return (1); + return (0); } |