All of lore.kernel.org
 help / color / mirror / Atom feed
From: paulius.zaleckas@gmail.com (Paulius Zaleckas)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] ARM: Add support for LZMA-compressed kernel images
Date: Thu, 25 Mar 2010 10:56:50 +0200	[thread overview]
Message-ID: <4BAB2552.9070704@gmail.com> (raw)
In-Reply-To: <1268335467-24223-1-git-send-email-albin.tonnerre@free-electrons.com>

On 03/11/2010 09:24 PM, Albin Tonnerre wrote:
> This patch allows using a kernel image compressed with LZMA on ARM.
> Extracting the image is fairly slow, but it might be useful on machines
> with a very limited amount of storage, as the size benefit is quite
> significant:
> Gzip: Data Size:    1586352 Bytes = 1549.17 kB = 1.51 MB
> LZMA: Data Size:    2135916 Bytes = 2085.86 kB = 2.04 MB
>
> Signed-off-by: Albin Tonnerre<albin.tonnerre@free-electrons.com>
> Tested-by: Martin Michlmayr<tbm@cyrius.com>

You can add
Tested-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>

I think you should submit this patch to Russell's patch system.

> ---
> v2: Updated to apply on top of 2.6.34-rc1
>
>   arch/arm/Kconfig                      |    1 +
>   arch/arm/boot/compressed/Makefile     |    1 +
>   arch/arm/boot/compressed/decompress.c |    4 ++++
>   arch/arm/boot/compressed/piggy.lzma.S |    6 ++++++
>   4 files changed, 12 insertions(+), 0 deletions(-)
>   create mode 100644 arch/arm/boot/compressed/piggy.lzma.S
>
> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index 3b18128..3ebc7c3 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@ -21,6 +21,7 @@ config ARM
>   	select HAVE_GENERIC_DMA_COHERENT
>   	select HAVE_KERNEL_GZIP
>   	select HAVE_KERNEL_LZO
> +	select HAVE_KERNEL_LZMA
>   	select HAVE_PERF_EVENTS
>   	select PERF_USE_VMALLOC
>   	help
> diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile
> index 97c89e7..53faa90 100644
> --- a/arch/arm/boot/compressed/Makefile
> +++ b/arch/arm/boot/compressed/Makefile
> @@ -65,6 +65,7 @@ SEDFLAGS	= s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/
>
>   suffix_$(CONFIG_KERNEL_GZIP) = gzip
>   suffix_$(CONFIG_KERNEL_LZO)  = lzo
> +suffix_$(CONFIG_KERNEL_LZMA) = lzma
>
>   targets       := vmlinux vmlinux.lds \
>   		 piggy.$(suffix_y) piggy.$(suffix_y).o \
> diff --git a/arch/arm/boot/compressed/decompress.c b/arch/arm/boot/compressed/decompress.c
> index 0da382f..d554df6 100644
> --- a/arch/arm/boot/compressed/decompress.c
> +++ b/arch/arm/boot/compressed/decompress.c
> @@ -39,6 +39,10 @@ extern void error(char *);
>   #include "../../../../lib/decompress_unlzo.c"
>   #endif
>
> +#ifdef CONFIG_KERNEL_LZMA
> +#include "../../../../lib/decompress_unlzma.c"
> +#endif
> +
>   void do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x))
>   {
>   	decompress(input, len, NULL, NULL, output, NULL, error);
> diff --git a/arch/arm/boot/compressed/piggy.lzma.S b/arch/arm/boot/compressed/piggy.lzma.S
> new file mode 100644
> index 0000000..d7e69cf
> --- /dev/null
> +++ b/arch/arm/boot/compressed/piggy.lzma.S
> @@ -0,0 +1,6 @@
> +	.section .piggydata,#alloc
> +	.globl	input_data
> +input_data:
> +	.incbin	"arch/arm/boot/compressed/piggy.lzma"
> +	.globl	input_data_end
> +input_data_end:

  parent reply	other threads:[~2010-03-25  8:56 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-20 15:02 [PATCH] ARM: Add support for LZMA-compressed kernel images Albin Tonnerre
2009-11-20 15:16 ` Russell King
2009-11-20 15:23   ` Albin Tonnerre
2009-11-20 20:21     ` Russell King
2009-12-09 10:27       ` Albin Tonnerre
2010-03-11 19:24 ` [PATCH v2] " Albin Tonnerre
2010-03-11 19:27   ` Albin Tonnerre
2010-03-25  8:56   ` Paulius Zaleckas [this message]
2010-05-06  9:04     ` Andrea Adami
2010-05-06 13:30       ` Albin Tonnerre
2010-05-06 15:54         ` Eric Miao
2010-05-07  6:54           ` Gadiyar, Anand
2010-05-06 18:09       ` Russell King - ARM Linux

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4BAB2552.9070704@gmail.com \
    --to=paulius.zaleckas@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.