freebsd-dev/sys/boot/i386/libi386/Makefile
Peter Wemm d1a50365db i386 ELF loader startup backend. On an ELF kernel booted with the 3-stage
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.
1998-09-30 19:48:09 +00:00

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>