diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-03-31 23:06:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-03-31 23:06:34 +0000 |
commit | d56519762d6c1899f2baa3dbbc461af05cd168a6 (patch) | |
tree | 3d68308130e343610f48c1c66982d81dd56a226e /sys/arch/i386/stand/Makefile.inc | |
parent | 10a04de1b4af9903e9146ad801619b45a42583c6 (diff) |
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!)
Diffstat (limited to 'sys/arch/i386/stand/Makefile.inc')
-rw-r--r-- | sys/arch/i386/stand/Makefile.inc | 28 |
1 files changed, 19 insertions, 9 deletions
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 - |