add special bootblocks for IBM PS/2 - those machines need different gate A20
addressing
This commit is contained in:
parent
783aaff7a9
commit
950749ab6f
|
@ -1,9 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.12 2000/04/23 19:57:12 tsarna Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2000/05/13 19:58:01 jdolecek Exp $
|
||||
|
||||
SUBDIR= biosboot installboot
|
||||
SUBDIR+= dosboot
|
||||
SUBDIR+= biosboot_com0
|
||||
SUBDIR+= biosboot_resetvideo
|
||||
SUBDIR+= biosboot_ps2
|
||||
#SUBDIR+= genprom netboot
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.28 2000/05/13 19:03:19 jhawk Exp $
|
||||
# $NetBSD: Makefile,v 1.29 2000/05/13 19:58:02 jdolecek Exp $
|
||||
|
||||
S= ${.CURDIR}/../../../../
|
||||
|
||||
|
@ -37,6 +37,11 @@ CPPFLAGS+= -DRESET_VIDEO
|
|||
CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_PC -DDIRECT_SERIAL
|
||||
.endif
|
||||
|
||||
.if (${BASE} == "biosboot_ps2")
|
||||
CPPFLAGS+= -DIBM_L40
|
||||
CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_PC -DDIRECT_SERIAL
|
||||
.endif
|
||||
|
||||
CPPFLAGS+= -DSUPPORT_USTARFS
|
||||
CPPFLAGS+= -DPASS_BIOSGEOM
|
||||
#CPPFLAGS+= -DBOOTPASSWD
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
# $NetBSD: Makefile,v 1.1 2000/05/13 19:58:03 jdolecek Exp $
|
||||
|
||||
BASE= biosboot_ps2
|
||||
|
||||
.include "../biosboot/Makefile"
|
Loading…
Reference in New Issue