diff options
author | Kyungsik Lee <kyungsik.lee@lge.com> | 2013-07-08 16:01:46 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-09 10:33:30 -0700 |
commit | e76e1fdfa8f8dc1ea6699923cf5d92b5bee9c936 (patch) | |
tree | d216233bcf256a8a3d8912cebbbf82032bb7b715 /lib/lz4 | |
parent | cffb78b0e0b3a30b059b27a1d97500cf6464efa9 (diff) | |
download | linux-exynos-e76e1fdfa8f8dc1ea6699923cf5d92b5bee9c936.tar.gz linux-exynos-e76e1fdfa8f8dc1ea6699923cf5d92b5bee9c936.tar.bz2 linux-exynos-e76e1fdfa8f8dc1ea6699923cf5d92b5bee9c936.zip |
lib: add support for LZ4-compressed kernel
Add support for extracting LZ4-compressed kernel images, as well as
LZ4-compressed ramdisk images in the kernel boot process.
Signed-off-by: Kyungsik Lee <kyungsik.lee@lge.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Florian Fainelli <florian@openwrt.org>
Cc: Yann Collet <yann.collet.73@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/lz4')
-rw-r--r-- | lib/lz4/Makefile | 1 | ||||
-rw-r--r-- | lib/lz4/lz4_decompress.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/lz4/Makefile b/lib/lz4/Makefile new file mode 100644 index 000000000000..7f548c6d1c5c --- /dev/null +++ b/lib/lz4/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_LZ4_DECOMPRESS) += lz4_decompress.o diff --git a/lib/lz4/lz4_decompress.c b/lib/lz4/lz4_decompress.c index dcc89753af65..d3414eae73a1 100644 --- a/lib/lz4/lz4_decompress.c +++ b/lib/lz4/lz4_decompress.c @@ -1,7 +1,7 @@ /* * LZ4 Decompressor for Linux kernel * - * Copyright (C) 2013 LG Electronics Co., Ltd. (http://www.lge.com/) + * Copyright (C) 2013, LG Electronics, Kyungsik Lee <kyungsik.lee@lge.com> * * Based on LZ4 implementation by Yann Collet. * |