Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/dev/lib/libwsemul_vt100 libwsemul_vt100: Rumpified ...



details:   https://anonhg.NetBSD.org/src/rev/2a8b519a8fe3
branches:  trunk
changeset: 365924:2a8b519a8fe3
user:      uwe <uwe%NetBSD.org@localhost>
date:      Tue May 03 14:11:59 2022 +0000

description:
libwsemul_vt100: Rumpified wscons vt100 emulator (wsvt25).

This library provides wscons vt100 emulation (aka TERM=wsvt25).  This
is internal module, not a device, so there's no RUMP_COMPONENT.  The
public interface provided by this module is wsemul_vt100_ops and it
needs the user to provide (in rump namespace) wsdisplay_emulinput and
wsdisplay_emulbell, provided in the real kernel by wsdisplay.

This subdirectory is not hooked into the build.

diffstat:

 sys/rump/dev/lib/libwsemul_vt100/Makefile |  21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diffs (25 lines):

diff -r 7e7b1375c905 -r 2a8b519a8fe3 sys/rump/dev/lib/libwsemul_vt100/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/dev/lib/libwsemul_vt100/Makefile Tue May 03 14:11:59 2022 +0000
@@ -0,0 +1,21 @@
+#      $NetBSD: Makefile,v 1.1 2022/05/03 14:11:59 uwe Exp $
+#
+
+# This library provides wscons vt100 emulation (aka TERM=wsvt25).
+# This is internal module, not a device, so there's no RUMP_COMPONENT.
+# The public interface provided by this module is wsemul_vt100_ops and
+# it needs the user to provide (in rump namespace) wsdisplay_emulinput
+# and wsdisplay_emulbell, provided in the real kernel by wsdisplay.
+
+.PATH: ${.CURDIR}/../../../../dev/wscons
+
+LIB=   rumpdev_wsemul_vt100
+COMMENT=Workstation console VT100 emulation
+
+SRCS+= wsemul_vt100.c
+SRCS+= wsemul_vt100_chars.c
+SRCS+= wsemul_vt100_keys.c
+SRCS+= wsemul_vt100_subr.c
+
+.include <bsd.lib.mk>
+.include <bsd.klinks.mk>



Home | Main Index | Thread Index | Old Index