From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 25 Mar 2026 12:41:39 +0100 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 1w5McF-004u4h-0z for lore@lore.pengutronix.de; Wed, 25 Mar 2026 12:41:39 +0100 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 1w5McE-0007RS-TD; Wed, 25 Mar 2026 12:41:38 +0100 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 1w5McA-0007Qg-N4; Wed, 25 Mar 2026 12:41:34 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w5McA-0023L9-1h; Wed, 25 Mar 2026 12:41:34 +0100 Received: from [::1] (helo=dude05.red.stw.pengutronix.de) by dude05.red.stw.pengutronix.de with esmtp (Exim 4.98.2) (envelope-from ) id 1w5McA-00000009OTO-1oai; Wed, 25 Mar 2026 12:41:34 +0100 From: Ahmad Fatoum To: distrokit@pengutronix.de Date: Wed, 25 Mar 2026 12:41:29 +0100 Message-ID: <20260325114133.2238715-1-a.fatoum@pengutronix.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 1/2] reason: correctly allow CONFIG_BOOTM_OFTREE_FALLBACK 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: , Cc: Ahmad Fatoum 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 The QA override couldn't work for several reasons: - We set CONFIG_NAME to different values like e.g. distrokit_v7a_old_defconfig or distrokit_v8a_defconfig - barebox_oftree_fallback is not a boolean, so the override is incorrect The argument in the override applies to all platforms, so let's fix these issues and mandate CONFIG_BOOTM_OFTREE_FALLBACK=y independent of the platforms. While at it, also fix a typo in the description. Signed-off-by: Ahmad Fatoum --- configs/bsp.ref | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/configs/bsp.ref b/configs/bsp.ref index e8c33d259116..934c99c262c5 100644 --- a/configs/bsp.ref +++ b/configs/bsp.ref @@ -46,15 +46,11 @@ barebox_oftree_fallback: for use in production as DT binding breakage is not an infrequent occurrence. - We take in DistroKit though to specify the DT when we specify a kernel, - so enable this option as it's occasionally helpful for quick debugging. - variants: - - condition: | - kconfig.have_barebox_config() and - (kconfig.BareboxConfig()['CONFIG_NAME'] == "multi_v7_defconfig" or - kconfig.BareboxConfig()['CONFIG_NAME'] == "multi_v8_defconfig") - value: False - - value: True + We take care in DistroKit though to specify the DT when we specify + a kernel, so enable this option as it's occasionally helpful for quick + debugging. + present: + - BOOTM_OFTREE_FALLBACK barebox_arm_optimized_string_functions: description: | -- 2.47.3