diff mbox series

[1/2] fs/ext2: add option for zstd compression

Message ID 20220531125152.135227-1-vsvoboda@forkoder.eu
State Superseded
Headers show
Series [1/2] fs/ext2: add option for zstd compression | expand

Commit Message

Vladimir Svoboda May 31, 2022, 12:51 p.m. UTC
From: Vladimir Svoboda <vsvoboda@forkoder.eu>

---
 fs/ext2/Config.in | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Arnout Vandecappelle June 20, 2022, 7:41 p.m. UTC | #1
Hi Vladimir

On 31/05/2022 14:51, vsvoboda@forkoder.eu wrote:
> From: Vladimir Svoboda <vsvoboda@forkoder.eu>

Add a Signed-off-by line for yourself.  This is a short way for you to
assert that you are entitled to contribute the patch under buildroot's
GPL license.  See [1] for more details. Without this, we can't apply the
patch.

  Regards,
  Arnout

[1] http://elinux.org/Developer_Certificate_Of_Origin

> 
> ---
>   fs/ext2/Config.in | 5 +++++
>   1 file changed, 5 insertions(+)
> 
> diff --git a/fs/ext2/Config.in b/fs/ext2/Config.in
> index 333ead95fe..705446df57 100644
> --- a/fs/ext2/Config.in
> +++ b/fs/ext2/Config.in
> @@ -131,6 +131,11 @@ config BR2_TARGET_ROOTFS_EXT2_XZ
>   	help
>   	  Do compress the ext2 filesystem with xz.
>   
> +config BR2_TARGET_ROOTFS_EXT2_ZSTD
> +	bool "zstd"
> +	help
> +	  Do compress the ext2 filesystem with zstd.
> +
>   endchoice
>   
>   endif # BR2_TARGET_ROOTFS_EXT2
Arnout Vandecappelle June 20, 2022, 7:42 p.m. UTC | #2
On 20/06/2022 21:41, Arnout Vandecappelle wrote:
>  Hi Vladimir
>
> On 31/05/2022 14:51, vsvoboda@forkoder.eu wrote:
>> From: Vladimir Svoboda <vsvoboda@forkoder.eu>
>
> Add a Signed-off-by line for yourself.  This is a short way for you to
> assert that you are entitled to contribute the patch under buildroot's
> GPL license.  See [1] for more details. Without this, we can't apply the
> patch.

  Forgot to mention: it's sufficient to reply to this mail with the 
Signed-off-by - patchwork will pick it up and add it to the patch.


  Regards,
  Arnout


>
>  Regards,
>  Arnout
>
> [1] http://elinux.org/Developer_Certificate_Of_Origin
>
>>
>> ---
>>   fs/ext2/Config.in | 5 +++++
>>   1 file changed, 5 insertions(+)
>>
>> diff --git a/fs/ext2/Config.in b/fs/ext2/Config.in
>> index 333ead95fe..705446df57 100644
>> --- a/fs/ext2/Config.in
>> +++ b/fs/ext2/Config.in
>> @@ -131,6 +131,11 @@ config BR2_TARGET_ROOTFS_EXT2_XZ
>>       help
>>         Do compress the ext2 filesystem with xz.
>>   +config BR2_TARGET_ROOTFS_EXT2_ZSTD
>> +    bool "zstd"
>> +    help
>> +      Do compress the ext2 filesystem with zstd.
>> +
>>   endchoice
>>     endif # BR2_TARGET_ROOTFS_EXT2
Vladimir Svoboda June 21, 2022, 8:19 p.m. UTC | #3
Just replying with the signed-off then :-)

Signed-off-by: Vladimir Svoboda <vsvoboda@forkoder.eu>

On Mon, Jun 20, 2022 at 9:42 PM Arnout Vandecappelle <arnout@mind.be> wrote:

>
> On 20/06/2022 21:41, Arnout Vandecappelle wrote:
> >  Hi Vladimir
> >
> > On 31/05/2022 14:51, vsvoboda@forkoder.eu wrote:
> >> From: Vladimir Svoboda <vsvoboda@forkoder.eu>
> >
> > Add a Signed-off-by line for yourself.  This is a short way for you to
> > assert that you are entitled to contribute the patch under buildroot's
> > GPL license.  See [1] for more details. Without this, we can't apply the
> > patch.
>
>   Forgot to mention: it's sufficient to reply to this mail with the
> Signed-off-by - patchwork will pick it up and add it to the patch.
>
>
>   Regards,
>   Arnout
>
>
> >
> >  Regards,
> >  Arnout
> >
> > [1] http://elinux.org/Developer_Certificate_Of_Origin
> >
> >>
> >> ---
> >>   fs/ext2/Config.in | 5 +++++
> >>   1 file changed, 5 insertions(+)
> >>
> >> diff --git a/fs/ext2/Config.in b/fs/ext2/Config.in
> >> index 333ead95fe..705446df57 100644
> >> --- a/fs/ext2/Config.in
> >> +++ b/fs/ext2/Config.in
> >> @@ -131,6 +131,11 @@ config BR2_TARGET_ROOTFS_EXT2_XZ
> >>       help
> >>         Do compress the ext2 filesystem with xz.
> >>   +config BR2_TARGET_ROOTFS_EXT2_ZSTD
> >> +    bool "zstd"
> >> +    help
> >> +      Do compress the ext2 filesystem with zstd.
> >> +
> >>   endchoice
> >>     endif # BR2_TARGET_ROOTFS_EXT2
>
diff mbox series

Patch

diff --git a/fs/ext2/Config.in b/fs/ext2/Config.in
index 333ead95fe..705446df57 100644
--- a/fs/ext2/Config.in
+++ b/fs/ext2/Config.in
@@ -131,6 +131,11 @@  config BR2_TARGET_ROOTFS_EXT2_XZ
 	help
 	  Do compress the ext2 filesystem with xz.
 
+config BR2_TARGET_ROOTFS_EXT2_ZSTD
+	bool "zstd"
+	help
+	  Do compress the ext2 filesystem with zstd.
+
 endchoice
 
 endif # BR2_TARGET_ROOTFS_EXT2