World, please meet the kld module called "lkm". If you have an a.out

kernel and you forgot to add 'options LKM', you can kldload this module
and get LKM compatability. (!)
This commit is contained in:
Peter Wemm 1999-01-17 19:05:40 +00:00
parent f20a9c5af8
commit e54a0f3279

12
sys/modules/lkm/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $Id: Makefile,v 1.11 1998/11/12 00:37:39 jkh Exp $
.PATH: ${.CURDIR}/../../kern
KMOD = lkm
SRCS = kern_lkm.c vnode_if.h opt_devfs.h
CLEANFILES += opt_devfs.h vnode_if.c vnode_if.h
opt_devfs.h:
touch opt_devfs.h
.include <bsd.kmod.mk>