| # | Line 17 | Line 17 | char dev_default[] = "x11"; | |
|---|---|---|
| 17 | extern struct driver *x11_init(); | |
| 18 | ||
| 19 | struct device devtable[] = { /* supported devices */ | |
| 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}, |
| 20 | > | {"slave", "Slave driver", comm_init}, |
| 21 | {"x11", "X11 color or greyscale display", x11_init}, | |
| 22 | + | {"x11d", "X11 display using stdin/stdout", x11_init}, |
| 23 | {0} /* terminator */ | |
| 24 | }; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |