c2f9d95de5
'three-stage' bootstrap. There are a number of caveats with the code in its current state: - The i386 bootstrap only supports booting from a floppy. - The kernel and kld do not yet know how to deal with the extended information and module summary passed in. - PnP-based autodetection and demand loading of modules is not implemented. - i386 ELF kernel loading is not ready yet. - The i386 bootstrap is loaded via an ugly blockmap. On the alpha, both net- and disk-booting (SRM console machines only) is supported. No blockmaps are used by this code. Obtained from: Parts from the NetBSD/i386 standalone bootstrap.
24 lines
533 B
Makefile
24 lines
533 B
Makefile
# $Id$
|
|
|
|
LIB= alpha
|
|
NOPIC= true
|
|
NOPROFILE= true
|
|
INTERNALLIB= true
|
|
|
|
# XXX hack to pick up stand.h
|
|
CFLAGS= -I/home/dfr/FreeBSD/alpha/src/lib/libstand
|
|
CFLAGS+= -DDEBUG
|
|
|
|
# Pick up the bootstrap header for some interface items
|
|
CFLAGS+= -I${.CURDIR}/../../common -mno-fp-regs
|
|
|
|
CFLAGS+= -DDISK_DEBUG
|
|
#CPPFLAGS+= -DNO_DISKLABEL
|
|
#CPPFLAGS+= -DSAVE_MEMORY
|
|
|
|
SRCS= OSFpal.c elf_freebsd.c prom.c prom_disp.S prom_swpal.S start.S \
|
|
pal.S reboot.c delay.c time.c alpha_module.c devicename.c \
|
|
srmdisk.c srmnet.c getsecs.c
|
|
|
|
.include <bsd.lib.mk>
|