d1a50365db
bootblocks, the kernel shows up as the primary module: [3:24am]~-100# kldstat Id Refs Address Size Name 1 1 0xf0100000 ff00000 /kernel ^^^^ oops.. :-) Based heavily on aout_freebsd.c. Hmm.. There's so much in common that these could probably be combined and just check the metadata to see which format it is.
16 lines
381 B
Makefile
16 lines
381 B
Makefile
# $Id: Makefile,v 1.5 1998/09/26 01:30:20 msmith Exp $
|
|
#
|
|
LIB= i386
|
|
NOPIC=
|
|
NOPROFILE=
|
|
|
|
SRCS= aout_freebsd.c biosdisk.c biosmem.c bootinfo.c comconsole.c \
|
|
devicename.c elf_freebsd.c gatea20.c i386_copy.c i386_module.c time.c vidconsole.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib
|
|
|
|
# Make the disk code more talkative
|
|
#CFLAGS+= -DDISK_DEBUG
|
|
|
|
.include <bsd.lib.mk>
|