aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/compressor/loader.h
diff options
context:
space:
mode:
authorMarty Connor <mdc@etherboot.org>2010-01-16 21:47:39 -0500
committerMarty Connor <mdc@etherboot.org>2010-01-16 21:47:39 -0500
commit330abebddf67ab27998f64070f27d5874cbc7b06 (patch)
tree08f5954725930ee9c38b0afab4cb9a30c71ce7e3 /contrib/compressor/loader.h
parent37883e99fd791571c6771c9d1d8721a11e7e8a8f (diff)
downloadipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.gz
[contrib] Move most contrib content to a separate repository
Most of the content that was previously in this directory has been moved to a separate git repository: http://git.etherboot.org/?p=contrib.git;a=summary or the Etherboot Project wiki: http://etherboot.org/
Diffstat (limited to 'contrib/compressor/loader.h')
-rw-r--r--contrib/compressor/loader.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/compressor/loader.h b/contrib/compressor/loader.h
deleted file mode 100644
index 20fa9af36..000000000
--- a/contrib/compressor/loader.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Do not change these values unless you really know what you are doing;
- the pre-computed lookup tables rely on the buffer size being 4kB or
- smaller. The buffer size must be a power of two. The lookahead size has
- to fit into 6 bits. If you change any of these numbers, you will also
- have to adjust the decompressor accordingly.
- */
-
-#define BUFSZ 4096
-#define LOOKAHEAD 60
-#define THRESHOLD 2
-#define NCHAR (256+LOOKAHEAD-THRESHOLD)
-#define TABLESZ (NCHAR+NCHAR-1)
-#define NIL ((unsigned short)-1)
-