From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C0FA63A1E96 for ; Sat, 27 Dec 2025 18:55:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766861750; cv=none; b=IxZN3cxt/mrQsJ8YCjFLKvYAFND8bW9vPpvliWwEaIUucdXI/LrA0lESNFHkpiQ8mibFzJr9isw72HZUiqnOPDZDMYwSaX1oKHjcSaPq+Pvcx+wHGFLCXw/0Rhe7HFQtG1ZILR0i8mZX6fsBAg1Nane459wOdr5xFxeuiiAZOII= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766861750; c=relaxed/simple; bh=FoGuGIMlVQdoD9RERrM31EHCMDkPViznKefOiLJtfO4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=hvsgIPiVZTNvXEAGwEFiYTLJFkckOjjx3qw9lIndnpjXl9o56jAYSJW3lUXakNtuTDVqZjvBA5sAqPVgJaRtADUgbbg74WT+sKpxDhiBJ0xDbKaNyw49Hs6LYxcHyTDbpUaEObmW2sPUOv1QXvoGI4nqC6Y/UgKNBTk7WzXqua8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VpFYMthi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VpFYMthi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 98449C4CEF1; Sat, 27 Dec 2025 18:55:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1766861750; bh=FoGuGIMlVQdoD9RERrM31EHCMDkPViznKefOiLJtfO4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=VpFYMthigo+s8StVNcijjDByvN2wwoA+ZnqtgecZEQmSIy3Wu8XQHXtNTYlG1E5PO 8zMvn97no2Wvnd2FqDKqzt/uVcFnWlJmRHnDKyROG0Z77pi+expuocE7wN4V/MXu5I ntJH7zhRGkHt/hUQdjtfFn9jczYsj7GO/q6+F/GWg4wooK5QH0D0bK1i6ddmzF8Nfx xVW0ftafrWS+FRJdELisx3byX5lwHnu9lTnnBci1N9EgSATUmFqMWUNfqX/tL9eMqS Ed2XvtiOPbDiSbWCG0GGgFOWzNGmFoNfsqZReKQVIRxqR+R3q7k4X2StWMoR/E1OyX 0fQx5/tVCP2QQ== Date: Sat, 27 Dec 2025 17:34:36 +0100 From: Nicolas Schier To: Simon Glass Cc: linux-arm-kernel@lists.infradead.org, Masahiro Yamada , Chen-Yu Tsai , Thomas =?iso-8859-1?Q?Wei=DFschuh?= , J =?iso-8859-1?Q?=2E_Neusch=E4fer?= , Ahmad Fatoum , Tom Rini , David Sterba , Nick Terrell , linux-kernel@vger.kernel.org Subject: Re: [PATCH v8 5/6] scripts/make_fit: Support a few more parallel compressors Message-ID: References: <20251227142200.2241198-1-sjg@chromium.org> <20251227142200.2241198-6-sjg@chromium.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20251227142200.2241198-6-sjg@chromium.org> On Sat, Dec 27, 2025 at 07:21:49AM -0700, Simon Glass wrote: > Add support for pbzip2, xz and plzip which can compress in parallel. > This speeds up the ramdisk compression. > > Signed-off-by: Simon Glass > --- > > (no changes since v7) > > Changes in v7: > - Mention xz as well, in the commit message > > scripts/make_fit.py | 12 +++++++++--- > 1 file changed, 9 insertions(+), 3 deletions(-) > Reviewed-by: Nicolas Schier -- Nicolas