From d56519762d6c1899f2baa3dbbc461af05cd168a6 Mon Sep 17 00:00:00 2001 From: Michael Shalayeff Date: Mon, 31 Mar 1997 23:06:34 +0000 Subject: commit all my mods to the last imported libsa stuff.... including: - disklabel support; - better boot cmd line - smaller size (using some compilation switches ;) - no more relocations in /boot, it's loaded in the place; - better disk performance (maybe were already in there) - installboot -n does not require write perms for device - more debugs - missing parts in libsa (such as cd9660 and so) - i don't like 2 files for exec_i386 (sorry, toby, let's discuss maybe?) tricks and tails: - joined .text and .data (saves you a page) - prot mode switching still in biosboot (it's freezed for awhile) - biosdisk internals changed - biosdev is not passed propery to the kernel (i'll fix it soon) - sure i missed smth here to note (use the source, Luke!) --- sys/arch/i386/stand/Makefile.inc | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) (limited to 'sys/arch/i386/stand/Makefile.inc') diff --git a/sys/arch/i386/stand/Makefile.inc b/sys/arch/i386/stand/Makefile.inc index 3c7d5a7c867..ef05b0586aa 100644 --- a/sys/arch/i386/stand/Makefile.inc +++ b/sys/arch/i386/stand/Makefile.inc @@ -1,14 +1,24 @@ +# $OpenBSD: Makefile.inc,v 1.3 1997/03/31 23:06:03 mickey Exp $ -CPPFLAGS+=-D_STANDALONE -DSAVE_MEMORY +#CPPFLAGS+=-nostdinc -I/sys +CPPFLAGS+=-Wall -Werror -I. -Imachine +SACFLAGS+=-Wa,-R -fno-common -fpack-struct -fno-builtin -fomit-frame-pointer +CPPFLAGS+=-D_STANDALONE +CPPFLAGS+=-DNO_IDTR +CPPFLAGS+=-DSAVE_MEMORY CPPFLAGS+=-DDEBUG -# -DALLOC_TRACE -# -D_TEST -# -DUNIX_DEBUG -# -DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -# -DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG -REL=0x1000 +# CPPFLAGS+=-DBIOS_DEBUG +# CPPFLAGS+=-DEXEC_DEBUG +# CPPFLAGS+=-DALLOC_TRACE +# CPPFLAFS+=-D_TEST +# CPPFLAFS+=-DUNIX_DEBUG +# CPPFLAFS+=-DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG +# CPPFLAGS+=-DNFS_DEBUG -DRPC_DEBUG -DRARP_DEBUG +START=0x1000 +HEAP_START=0x10000 +HEAP_LIMIT=0x40000 +BOOTREL=0x3000 +BOOTMAGIC=0xdeadbeef NO_NET=no_net -SA_ZLIB=sa_zlib BINDIR= /usr/mdec - -- cgit v1.2.3