From c96f6e4f1d827076592526a3f1f3e7887a9732a4 Mon Sep 17 00:00:00 2001 From: simokawa Date: Fri, 24 Oct 2003 15:44:10 +0000 Subject: Add dumb console driver and related bits. dcons(4): very simple console and gdb port driver dcons_crom(4): FireWire attachment dconschat(8): User interface to dcons Tested with: i386, i386-PAE, and sparc64. --- sys/modules/dcons/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sys/modules/dcons/Makefile (limited to 'sys/modules/dcons') diff --git a/sys/modules/dcons/Makefile b/sys/modules/dcons/Makefile new file mode 100644 index 0000000..e063f61 --- /dev/null +++ b/sys/modules/dcons/Makefile @@ -0,0 +1,18 @@ +# $Id: Makefile,v 1.6 2003/10/24 15:41:26 simokawa Exp $ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/dcons + +KMOD = dcons +SRCS = dcons.c dcons.h \ + opt_dcons.h opt_ddb.h opt_comconsole.h + +opt_ddb.h: + echo "#define DDB 1" > $@ + +opt_comconsole.h: + echo "#define ALT_BREAK_TO_DEBUGGER 1" > $@ + +CFLAGS+= -I${.CURDIR}/../.. + +.include -- cgit v1.1