2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for terminal driver (TTY)
|
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
PROG= tty
|
TTY: seperate hardware dependent parts + add new serial driver
.Split TTY in order to support both x86 and ARM.
.Add support for the TI 16750 UARTs on OMAP35x.
.Various other improvements:
.Kernel messages are printed using generic terminal write
functions. That is, they are no longer directly displayed
on the console.
.The console can now be displayed on any terminal. This
is configured by the "console={tty00,tty01,ttyc2,ttyc3,ttyc4}"
boot variable -- basically any valid /dev/tty* terminal.
.Cutify kernel messages with colors. Configured by
"kernelclr={1,2,3,4,5,6,7}" boot variable.
2012-10-17 16:07:53 +02:00
|
|
|
|
|
|
|
.include "arch/${MACHINE_ARCH}/Makefile.inc"
|
|
|
|
|
2014-02-24 23:28:12 +01:00
|
|
|
SRCS += tty.c
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2013-09-11 12:48:10 +02:00
|
|
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
|
|
|
|
LDADD+= -lchardriver -lsys -ltimers
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
MAN=
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-07-05 21:37:08 +02:00
|
|
|
BINDIR?= /usr/sbin
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
SUBDIR= keymaps
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
# Needs kernel/const.h, etc
|
TTY: seperate hardware dependent parts + add new serial driver
.Split TTY in order to support both x86 and ARM.
.Add support for the TI 16750 UARTs on OMAP35x.
.Various other improvements:
.Kernel messages are printed using generic terminal write
functions. That is, they are no longer directly displayed
on the console.
.The console can now be displayed on any terminal. This
is configured by the "console={tty00,tty01,ttyc2,ttyc3,ttyc4}"
boot variable -- basically any valid /dev/tty* terminal.
.Cutify kernel messages with colors. Configured by
"kernelclr={1,2,3,4,5,6,7}" boot variable.
2012-10-17 16:07:53 +02:00
|
|
|
CPPFLAGS+= -I${.CURDIR} -I${NETBSDSRCDIR}
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2013-02-28 11:06:24 +01:00
|
|
|
.include <minix.service.mk>
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.subdir.mk>
|