From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 11 Mar 2026 11:54:34 +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 1w0HCz-00AQ3e-2h for lore@lore.pengutronix.de; Wed, 11 Mar 2026 11:54:34 +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 1w0HD0-0005QI-An; Wed, 11 Mar 2026 11:54:34 +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 1w0HCw-0005Pw-VE; Wed, 11 Mar 2026 11:54:30 +0100 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac] helo=dude04) 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 1w0HCv-004qSw-1O; Wed, 11 Mar 2026 11:54:30 +0100 Received: from rhi by dude04 with local (Exim 4.98.2) (envelope-from ) id 1w0HCw-00000002HBu-2yz5; Wed, 11 Mar 2026 11:54:30 +0100 From: Roland Hieber To: distrokit@pengutronix.de Date: Wed, 11 Mar 2026 11:54:18 +0100 Message-ID: <20260311105418.542481-1-rhi@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260121080813.4099332-7-a.fatoum@pengutronix.de> References: <20260121080813.4099332-7-a.fatoum@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH] fixup! barebox: enable 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 , Roland Hieber 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 Apparently the indentation needs to be consistent here, otherwise the YAML parser dies with a parse error: yaml.parser.ParserError: while parsing a block mapping in "", line 52, column 7: - condition: | ^ expected , but found '' in "", line 54, column 8: (kconfig.BareboxConfig()['CONFIG ... ^ Signed-off-by: Roland Hieber --- configs/bsp.ref | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/bsp.ref b/configs/bsp.ref index 86a2bdebe75a..e8c33d259116 100644 --- a/configs/bsp.ref +++ b/configs/bsp.ref @@ -51,7 +51,7 @@ barebox_oftree_fallback: variants: - condition: | kconfig.have_barebox_config() and - (kconfig.BareboxConfig()['CONFIG_NAME'] == "multi_v7_defconfig" or + (kconfig.BareboxConfig()['CONFIG_NAME'] == "multi_v7_defconfig" or kconfig.BareboxConfig()['CONFIG_NAME'] == "multi_v8_defconfig") value: False - value: True -- 2.47.3