| 1 |
< |
/* Copyright (c) 1988 Regents of the University of California */ |
| 1 |
> |
/* Copyright (c) 1991 Regents of the University of California */ |
| 2 |
|
|
| 3 |
|
#ifndef lint |
| 4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
| 12 |
|
|
| 13 |
|
#include "driver.h" |
| 14 |
|
|
| 15 |
< |
extern struct driver *aed_init(), *x_init(); |
| 15 |
> |
char dev_default[] = "x11"; |
| 16 |
|
|
| 17 |
+ |
extern struct driver *x11_init(); |
| 18 |
+ |
|
| 19 |
|
struct device devtable[] = { /* supported devices */ |
| 20 |
< |
{"aed", "AED 512 color graphics terminal", aed_init}, |
| 21 |
< |
{"sundev", "SunView color or greyscale screen", comm_init}, |
| 22 |
< |
{"X", "X-window color or greyscale display", x_init}, |
| 20 |
> |
{"aed", "AED 512 color graphics terminal", comm_init}, |
| 21 |
> |
{"news", "NeWS color or greyscale screen", comm_init}, |
| 22 |
> |
{"sun", "SunView color or greyscale screen", comm_init}, |
| 23 |
> |
{"x11", "X11 color or greyscale display", x11_init}, |
| 24 |
|
{0} /* terminator */ |
| 25 |
|
}; |