c73b70eec4
- Implement a new copyin/readin interface for loading modules. This allows the module loaders to become MI, reducing code duplication. - Simplify the search for an image activator for the loaded kernel. - Use the common module management code for all module metadata. - Add an 'unload' command that throws everything away. - Move the a.out module loader to MI code, add support for a.out kld modules. Submitted by: Alpha changes fixed by Doug Rabson <dfr@freebsd.org>
19 lines
479 B
Makefile
19 lines
479 B
Makefile
# $Id: Makefile,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $
|
|
#
|
|
SUBDIR= crt
|
|
LIB= i386
|
|
NOPIC=
|
|
NOPROFILE=
|
|
|
|
SRCS= aout_freebsd.c biosdelay.S biosdisk.c biosdisk_support.S biosgetrtc.S \
|
|
biosmem.S biosreboot.S bootinfo.c comconsole.c comconsole_support.S \
|
|
devicename.c gatea20.c getsecs.c i386_copy.c i386_module.c \
|
|
startprog.S vidconsole.c vidconsole_support.S
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../common
|
|
|
|
# Make the disk code more talkative
|
|
#CFLAGS+= -DDISK_DEBUG
|
|
|
|
.include <bsd.lib.mk>
|