diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-04 20:39:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-04 20:39:07 +0000 |
commit | b5304bb58ccc8685d27ff0f96701bb1cb258a6b9 (patch) | |
tree | 4a5df4ff90f4b17e9461da71efb1bb18e882b5a2 /etc/etc.mac68k/MAKEDEV.md | |
parent | 15d15e3ad69f61e77c02fed009906131becd759f (diff) |
Import NetBSD's direct adb code on mac68k, switching to real keyboard and mouse
drivers, and to wscons as the console; a few parts borrowed from OpenBSD/macppc
as well.
Currently only working with displays configured in 1bpp or 8bpp modes; this
limitation will be worked on ASAP.
Tested by claudio@ kettenis@ martin@ nick@ and I on various models. X11 changes
coming soon.
Diffstat (limited to 'etc/etc.mac68k/MAKEDEV.md')
-rw-r--r-- | etc/etc.mac68k/MAKEDEV.md | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/etc/etc.mac68k/MAKEDEV.md b/etc/etc.mac68k/MAKEDEV.md index 1d8d6c1b7ec..0e263836d73 100644 --- a/etc/etc.mac68k/MAKEDEV.md +++ b/etc/etc.mac68k/MAKEDEV.md @@ -1,5 +1,5 @@ vers(__file__, - {-$OpenBSD: MAKEDEV.md,v 1.20 2005/10/20 21:44:42 jmc Exp $-}, + {-$OpenBSD: MAKEDEV.md,v 1.21 2006/01/04 20:39:03 miod Exp $-}, etc.MACHINE)dnl dnl dnl Copyright (c) 2001-2004 Todd T. Fries <todd@OpenBSD.org> @@ -37,15 +37,18 @@ _DEV(ch, 17) _DEV(st, 14, 5) _TITLE(term) _DEV(mac_tty0) -_DEV(ttye) dnl _TITLE(call) _TITLE(pty) _DEV(ptm, 52) _DEV(pty, 5) _DEV(tty, 4) _TITLE(cons) -_DEV(adb, 23) -_DEV(grf_mac, 10) +_DEV(wscons) +_DEV(wsdisp, 38) +_DEV(wskbd, 39) +_DEV(wsmux, 41) +_TITLE(point) +_DEV(wsmouse, 40) _TITLE(spec) _DEV(asc, 36) _DEV(bpf, 22) @@ -86,21 +89,6 @@ ttye*) esac ;; -grf*) - case $U in - 0|1|2|3) - M grf$U c 10 $U - ;; - *) - echo bad unit for grf in: $i - ;; - esac - ;; - -adb) - M adb c 23 0 - ;; - asc*) M asc$U c 36 $U ;; @@ -121,12 +109,9 @@ target(all, xy, 0, 1, 2, 3)dnl target(all, rd, 0)dnl target(all, cd, 0, 1)dnl target(all, ccd, 0, 1, 2, 3)dnl -twrget(all, ttye, ttye, 0)dnl target(ramd, sd, 0, 1, 2, 3)dnl target(ramd, st, 0, 1)dnl target(ramd, rd, 0, 1)dnl -target(ramd, adb)dnl target(ramd, asc, 0)dnl -target(ramd, grf, 0, 1)dnl twrget(ramd, mac_tty0, tty0, 0, 1)dnl target(ramd, pty, 0)dnl |