diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-01-08 15:14:17 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-08 15:14:17 -0800 |
commit | 889c92d21db40be0b7d22a59395060237895bb85 (patch) | |
tree | db76e1e002e450cccc1b7a8119ad629eccc24da8 /include | |
parent | 6c11b12ac6f101732d43b5682f5b3ae4dda4205f (diff) | |
download | linux-889c92d21db40be0b7d22a59395060237895bb85.tar.gz linux-889c92d21db40be0b7d22a59395060237895bb85.tar.bz2 linux-889c92d21db40be0b7d22a59395060237895bb85.zip |
bzip2/lzma: centralize format detection
Centralize the compression format detection to a common routine in the
lib directory, and use it for both initramfs and initrd.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/decompress/generic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/decompress/generic.h b/include/linux/decompress/generic.h index f847f514f78e..6dfb856327bb 100644 --- a/include/linux/decompress/generic.h +++ b/include/linux/decompress/generic.h @@ -26,5 +26,8 @@ typedef int (*decompress_fn) (unsigned char *inbuf, int len, *fill should be called (repeatedly...) to read data, at most IOBUF_SIZE */ +/* Utility routine to detect the decompression method */ +decompress_fn decompress_method(const unsigned char *inbuf, int len, + const char **name); #endif |