diff options
author | peter <peter@FreeBSD.org> | 1995-10-06 02:42:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-10-06 02:42:15 +0000 |
commit | d240b35afdf2a2b6fa8e5c9849aa9f2bd20c20fd (patch) | |
tree | 2108e8b2947af95c86542884337a4bd418c07f1b /usr.bin/kzip/Makefile | |
parent | 721965d1d6c76b28193a75f025cad53a86c01013 (diff) | |
download | FreeBSD-src-d240b35afdf2a2b6fa8e5c9849aa9f2bd20c20fd.zip FreeBSD-src-d240b35afdf2a2b6fa8e5c9849aa9f2bd20c20fd.tar.gz |
Support for using overlapping kzip kernels that are overwritten during
uncompression by the "proper" kernel. These changes also add a -v option
so you can see how much room you are using, and check to make sure you're
not going past the 4MB boundary.
This depends on the corresponding changes to sys/i386/boot/kzipboot.
Submitted by: Gary Jones(?) <gj@freefall>, and my code merged in.
Diffstat (limited to 'usr.bin/kzip/Makefile')
-rw-r--r-- | usr.bin/kzip/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/kzip/Makefile b/usr.bin/kzip/Makefile index cc9186c..bdd05e1 100644 --- a/usr.bin/kzip/Makefile +++ b/usr.bin/kzip/Makefile @@ -1,9 +1,6 @@ -# $Id$ +# $Id: Makefile,v 1.1 1995/04/15 08:18:16 phk Exp $ PROG= kzip NOMAN= toobad -# Where we load the compressed stuff to uncompress it -CFLAGS+= -DKZBASE=\"0x300000\" - .include <bsd.prog.mk> |