summaryrefslogtreecommitdiffstats
path: root/sys/modules/dcons
diff options
context:
space:
mode:
authorsimokawa <simokawa@FreeBSD.org>2003-10-24 15:44:10 +0000
committersimokawa <simokawa@FreeBSD.org>2003-10-24 15:44:10 +0000
commitc96f6e4f1d827076592526a3f1f3e7887a9732a4 (patch)
tree2bed02c82f165be07e877314c53ec276a84990ec /sys/modules/dcons
parent7248844c9b0757577411885916b1314dfedc3cae (diff)
downloadFreeBSD-src-c96f6e4f1d827076592526a3f1f3e7887a9732a4.zip
FreeBSD-src-c96f6e4f1d827076592526a3f1f3e7887a9732a4.tar.gz
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.
Diffstat (limited to 'sys/modules/dcons')
-rw-r--r--sys/modules/dcons/Makefile18
1 files changed, 18 insertions, 0 deletions
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 <bsd.kmod.mk>
OpenPOWER on IntegriCloud