public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kbuild: Add KDEB_COMPRESS_LEVEL to control compression level
@ 2025-03-07 15:09 Matt Fleming
  2025-03-13 12:38 ` Matt Fleming
  0 siblings, 1 reply; 4+ messages in thread
From: Matt Fleming @ 2025-03-07 15:09 UTC (permalink / raw)
  To: Masahiro Yamada, Nathan Chancellor, Nicolas Schier
  Cc: linux-kernel, kernel-team, Matt Fleming

From: Matt Fleming <mfleming@cloudflare.com>

Give users more control to tradeoff compression time vs compressed size
when building debian packages with a new KDEB_COMPRESS_LEVEL option.

Here are some examples of using KDEB_COMPRESS=xz with
KDEB_COMPRESS_LEVEL=1 through to KDEB_COMPRESS_LEVEL=6 with the
bindeb-pkg target:

  Level Time to compress Compressed size (bytes)
  ----- ---------------- -----------------------
      1        0m36.771s               476909176
      2        0m40.335s               474832644
      3        0m43.635s               473845600
      4        1m13.839s               472260012
      5        1m18.657s               464442676
      6        1m20.658s               464355000

Signed-off-by: Matt Fleming <mfleming@cloudflare.com>
---
 scripts/package/debian/rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/package/debian/rules b/scripts/package/debian/rules
index ca07243bd5cd..616ecf1d4d1b 100755
--- a/scripts/package/debian/rules
+++ b/scripts/package/debian/rules
@@ -52,7 +52,7 @@ define binary
 	$(Q)dh_fixperms $(DH_OPTIONS)
 	$(Q)dh_gencontrol $(DH_OPTIONS) -- -f$(call mk-files,$@)
 	$(Q)dh_md5sums $(DH_OPTIONS)
-	$(Q)dh_builddeb $(DH_OPTIONS) -- $(addprefix -Z,$(KDEB_COMPRESS))
+	$(Q)dh_builddeb $(DH_OPTIONS) -- $(addprefix -Z,$(KDEB_COMPRESS)) $(addprefix -z,$(KDEB_COMPRESS_LEVEL))
 endef
 
 .PHONY: $(binary-targets)
-- 
2.34.1


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

end of thread, other threads:[~2025-03-17 11:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-07 15:09 [PATCH] kbuild: Add KDEB_COMPRESS_LEVEL to control compression level Matt Fleming
2025-03-13 12:38 ` Matt Fleming
2025-03-14 10:06   ` Masahiro Yamada
2025-03-17 11:46     ` Matt Fleming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox