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; 4+ 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] 4+ 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; 4+ 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] 4+ 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; 4+ 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] 4+ messages in thread

* [Buildroot] [PATCH 2/2] fs/tar: add option for zstd compression
  2022-05-31 12:51 [Buildroot] [PATCH 1/2] fs/ext2: " vsvoboda
@ 2022-05-31 12:51 ` vsvoboda
  0 siblings, 0 replies; 4+ 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/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] 4+ messages in thread

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

Thread overview: 4+ 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-05-31 12:51 ` [Buildroot] [PATCH 2/2] fs/tar: " vsvoboda

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.