All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression
@ 2022-06-24 14:07 vsvoboda
  2022-06-24 14:07 ` [Buildroot] [PATCH 2/2] fs/tar: " vsvoboda
  0 siblings, 1 reply; 7+ messages in thread
From: vsvoboda @ 2022-06-24 14:07 UTC (permalink / raw)
  To: buildroot; +Cc: Vladimir Svoboda

From: Vladimir Svoboda <vsvoboda@forkoder.eu>

Signed-off-by: Vladimir Svoboda <vsvoboda@forkoder.eu>
---
 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
-- 
2.36.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] fs/tar: add option for zstd compression
  2022-06-24 14:07 [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression vsvoboda
@ 2022-06-24 14:07 ` vsvoboda
  2022-07-23 20:40   ` Arnout Vandecappelle
  0 siblings, 1 reply; 7+ messages in thread
From: vsvoboda @ 2022-06-24 14:07 UTC (permalink / raw)
  To: buildroot; +Cc: Vladimir Svoboda

From: Vladimir Svoboda <vsvoboda@forkoder.eu>

Signed-off-by: Vladimir Svoboda <vsvoboda@forkoder.eu>
---
 fs/tar/Config.in | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/tar/Config.in b/fs/tar/Config.in
index a4e375c68b..e88a5bb91e 100644
--- a/fs/tar/Config.in
+++ b/fs/tar/Config.in
@@ -46,6 +46,11 @@ config BR2_TARGET_ROOTFS_TAR_XZ
 	help
 	  Do compress the tarball with xz.
 
+config BR2_TARGET_ROOTFS_TAR_ZSTD
+	bool "zstd"
+	help
+	  Do compress the tarball with zstd.
+
 endchoice
 
 config BR2_TARGET_ROOTFS_TAR_OPTIONS
-- 
2.36.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH 2/2] fs/tar: add option for zstd compression
  2022-06-24 14:07 ` [Buildroot] [PATCH 2/2] fs/tar: " vsvoboda
@ 2022-07-23 20:40   ` Arnout Vandecappelle
  0 siblings, 0 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2022-07-23 20:40 UTC (permalink / raw)
  To: vsvoboda, buildroot



On 24/06/2022 16:07, vsvoboda@forkoder.eu wrote:
> From: Vladimir Svoboda <vsvoboda@forkoder.eu>
> 
> Signed-off-by: Vladimir Svoboda <vsvoboda@forkoder.eu>


  Applied both to master, thanks.

  Regards,
  Arnout

> ---
>   fs/tar/Config.in | 5 +++++
>   1 file changed, 5 insertions(+)
> 
> diff --git a/fs/tar/Config.in b/fs/tar/Config.in
> index a4e375c68b..e88a5bb91e 100644
> --- a/fs/tar/Config.in
> +++ b/fs/tar/Config.in
> @@ -46,6 +46,11 @@ config BR2_TARGET_ROOTFS_TAR_XZ
>   	help
>   	  Do compress the tarball with xz.
>   
> +config BR2_TARGET_ROOTFS_TAR_ZSTD
> +	bool "zstd"
> +	help
> +	  Do compress the tarball with zstd.
> +
>   endchoice
>   
>   config BR2_TARGET_ROOTFS_TAR_OPTIONS
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression
  2022-06-20 19:42   ` Arnout Vandecappelle
@ 2022-06-21 20:19     ` Vladimir Svoboda
  0 siblings, 0 replies; 7+ messages in thread
From: Vladimir Svoboda @ 2022-06-21 20:19 UTC (permalink / raw)
  To: Arnout Vandecappelle; +Cc: buildroot


[-- Attachment #1.1: Type: text/plain, Size: 1445 bytes --]

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
>

[-- Attachment #1.2: Type: text/html, Size: 2413 bytes --]

[-- Attachment #2: Type: text/plain, Size: 150 bytes --]

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression
  2022-06-20 19:41 ` Arnout Vandecappelle
@ 2022-06-20 19:42   ` Arnout Vandecappelle
  2022-06-21 20:19     ` Vladimir Svoboda
  0 siblings, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2022-06-20 19:42 UTC (permalink / raw)
  To: vsvoboda, buildroot


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
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression
  2022-05-31 12:51 [Buildroot] [PATCH 1/2] fs/ext2: " vsvoboda
@ 2022-06-20 19:41 ` Arnout Vandecappelle
  2022-06-20 19:42   ` Arnout Vandecappelle
  0 siblings, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2022-06-20 19:41 UTC (permalink / raw)
  To: vsvoboda, buildroot

  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
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression
@ 2022-05-31 12:51 vsvoboda
  2022-06-20 19:41 ` Arnout Vandecappelle
  0 siblings, 1 reply; 7+ messages in thread
From: vsvoboda @ 2022-05-31 12:51 UTC (permalink / raw)
  To: buildroot; +Cc: Vladimir Svoboda

From: Vladimir Svoboda <vsvoboda@forkoder.eu>

---
 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
-- 
2.36.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-07-23 20:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-24 14:07 [Buildroot] [PATCH 1/2] fs/ext2: add option for zstd compression vsvoboda
2022-06-24 14:07 ` [Buildroot] [PATCH 2/2] fs/tar: " vsvoboda
2022-07-23 20:40   ` Arnout Vandecappelle
  -- strict thread matches above, loose matches on Subject: below --
2022-05-31 12:51 [Buildroot] [PATCH 1/2] fs/ext2: " vsvoboda
2022-06-20 19:41 ` Arnout Vandecappelle
2022-06-20 19:42   ` Arnout Vandecappelle
2022-06-21 20:19     ` Vladimir Svoboda

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.