From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 05 May 2026 13:17:19 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wKDmC-001E0q-08 for lore@lore.pengutronix.de; Tue, 05 May 2026 13:17:19 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wKDmA-0007rF-JC; Tue, 05 May 2026 13:17:18 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1wKDm7-0007mP-1E for distrokit@pengutronix.de; Tue, 05 May 2026 13:17:15 +0200 Received: from dude02.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::28]) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.96) (envelope-from ) id 1wKDm6-000ZNp-1A for distrokit@pengutronix.de; Tue, 05 May 2026 13:17:14 +0200 From: Lucas Stach To: distrokit@pengutronix.de Date: Tue, 5 May 2026 13:17:14 +0200 Message-ID: <20260505111714.1361551-4-l.stach@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260505111714.1361551-1-l.stach@pengutronix.de> References: <20260505111714.1361551-1-l.stach@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH v3 4/4] reason: allow kernel initrd support for all platforms X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Most new projects require initrd support, so we want all reference configs maintained in this repo to enable the kernel support. This override can be removed once upstream reason ceases to enforce initrd support to be disabled. Signed-off-by: Lucas Stach --- v3: new patch --- configs/bsp.ref | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/configs/bsp.ref b/configs/bsp.ref index de2736462445..0c28ee62f360 100644 --- a/configs/bsp.ref +++ b/configs/bsp.ref @@ -32,12 +32,10 @@ kernel_dtb_partitions: kernel_initrd: description: | - Initrd support is not needed on most embedded systems. - For v7a and v8a, we use an initrd for the fastboot usecase. + As most new projects require a initrd for secure-boot purposes, we want the + kernel reference configs maintained in this repo to include initrd support. variants: - - condition: kconfig.PTXPlatformConfig().options['PLATFORM'] in ('v8a', 'v7a') - value: True - - value: False + - value: True barebox_oftree_fallback: description: | -- 2.47.3