From 599c57a971704afebb98afbde086803d47d8f9cf Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 23 Oct 2002 15:53:09 +0000 Subject: - New-bussify the rc(4) device driver. - Add detach support to the driver so that you can kldunload the module. Note that currently rc_detach() fails to detach a unit if any of its child devices are open, thus a kldunload will fail if any of the tty devices are currently open. - sys/i386/isa/ic/cd180.h was moved to sys/dev/ic/cd180.h as part of this change. Requested by: rwatson Tested by: rwatson --- sys/modules/Makefile | 1 + sys/modules/rc/Makefile | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 sys/modules/rc/Makefile (limited to 'sys/modules') diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 4f8fe3de901ba..1176cec9b115c 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -187,6 +187,7 @@ SUBDIR+=aac \ pccard \ pecoff \ ray \ + rc \ s3 \ sbni \ scsi_low \ diff --git a/sys/modules/rc/Makefile b/sys/modules/rc/Makefile new file mode 100644 index 0000000000000..ffa6163afa833 --- /dev/null +++ b/sys/modules/rc/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/rc + +KMOD= rc +SRCS= rc.c device_if.h bus_if.h isa_if.h + +.include -- cgit v1.3