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 62C992882B2 for ; Sat, 8 Nov 2025 21:19:45 +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=1762636785; cv=none; b=gFGx7S6KloSYrDME3paqSTVuGcSB8rI2L3vp494JUyHWdx1W2dFAD4C4NjWSEuRQCUrraEAX0rGhX/kMrovfZuOM0fs7SkPQ4xAgBm73lcX5+ThG6hQUYi/cMpZRI4MHm8qouiZagIlt69PFMVQDc0Cu6xHDgcPGinYWzJ0uTF0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762636785; c=relaxed/simple; bh=xwtOyHhUhjUtQS7W2RceLVNraeqZaBqVnVbwNj4o/gY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=nKynEzNE12qUo83nEXKCNDws7lmor4QoyH5ITAD4ofX5zl8HoZ2iO72R+nqfMslt+yiMYu6q4hvho0xuVGRQ7Vcen+qAPxMaYhOIH1i6DoeAUSaJa9TKKqTBuQarmEFN7S3UCvj9j89mOEELfloYG2xGE+3yJTZyAqE9rZvqsiM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ZDwjdXqW; 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="ZDwjdXqW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6B4FAC19425; Sat, 8 Nov 2025 21:19:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1762636784; bh=xwtOyHhUhjUtQS7W2RceLVNraeqZaBqVnVbwNj4o/gY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZDwjdXqW0uk/R0DFhRACQsFtHW0y3oSYLsNQHzoGf1orkq4mnD/KyY0VJomMupty5 YWUee0OgHX52VlLjsvdEYraS3mIWBfF65tsAGW4RTGlal90d2kRrKXFasl+X2LTRZH V6renckqVcGJjpzjOiLfleGCCs9NSTmjF4Ll+7RL36P8W7GLCQCU08KGy/17jjiMgn 0R/4HkNk6n1sfQJ7BOmyoS/dAs/qX/7cBCB+584k/YPXc9QcZcI7uqMHIzbpuSNrlZ kDzC6B/sQdvvqFTQna066tewF1w7xvmGJIQn38Gl8y4tk82KFDvW1W0wQ0y+y2GeyN XTTbY446yDa4g== Date: Sat, 8 Nov 2025 22:15:20 +0100 From: Nicolas Schier To: Simon Glass Cc: linux-arm-kernel@lists.infradead.org, Chen-Yu Tsai , Ahmad Fatoum , Masahiro Yamada , J =?iso-8859-1?Q?=2E_Neusch=E4fer?= , Tom Rini , linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/7] scripts/make_fit: Support an initial ramdisk Message-ID: References: <20251006230205.521341-1-sjg@chromium.org> <20251006230205.521341-3-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: <20251006230205.521341-3-sjg@chromium.org> On Mon, Oct 06, 2025 at 05:01:53PM -0600, Simon Glass wrote: > FIT (Flat Image Tree) allows a ramdisk to be included in each > configuration. Add support for this to the script. > > This feature is not available via 'make image.fit' since the ramdisk > likely needs to be built separately anyway, e.g. using modules from > the kernel build. A later patch in this series provides support for > doing that. > > Note that the uncompressed size is not correct when a ramdisk is use, I think something is missing: "is in use" or "is used"? > since it is too expensive to decompress the ramdisk. > > Signed-off-by: Simon Glass > --- > Reviewed-by: Nicolas Schier -- Nicolas