From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 26 Sep 2022 15:58:16 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ococi-00FL1R-18 for lore@lore.pengutronix.de; Mon, 26 Sep 2022 15:58:16 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1ococg-0004T8-D7; Mon, 26 Sep 2022 15:58:14 +0200 Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ocobj-0004Hc-Kp for ptxdist@pengutronix.de; Mon, 26 Sep 2022 15:57:16 +0200 Received: from adahl by ada.ifak-system.com with local (Exim 4.92) (envelope-from ) id 1ocobh-0005LV-AI for ptxdist@pengutronix.de; Mon, 26 Sep 2022 15:57:13 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=default; t=1664200633; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=SQRopEM/iuSTI4onu0re8REWUlFBeGGC90zInNMwoZE=; b=s82JtDEFXo2jG6P/Pr4X9uuH5cxKL0+5Ryee+xz3IRJxdJRjgqdNiMjGE+o4lvhmFRbOvV 5xG3nN4QpMqF3dFnTsyUIDd0sgkDNKInRRxQdiT+LZDP1JQqBlv4eyayNxL8P0jJ3xJkWd m7dmlx71gr1H1afoauRBTWEtl4tTCX0NPDaECg5jQUwAVhhmX/jpV4NYpeZRCMBUf0EuGj It+UirGpJlk2Fe8znHqY6aKe+nZff96IRAgHKLFr5/opwuHNxZ6S9QMouRjuRYXvDFpc1+ nl177tQE7uXcyicb4CSTzv+wQNc4AdkGUdui2hXy+IZTqOUKZD3C7XuYlpmEwg== From: Alexander Dahl To: ptxdist@pengutronix.de Date: Mon, 26 Sep 2022 15:57:13 +0200 Message-Id: <20220926135713.20499-3-ada@thorsis.com> In-Reply-To: <20220926135713.20499-1-ada@thorsis.com> References: <20220926135713.20499-1-ada@thorsis.com> Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH 2/2] at91bootstrap2: Bump default version and add host-system dependency X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Configurations building for boards using NAND flash call a host system python script for generating a special header file. That script was migrated to python3 with at91bootstrap v3.9.3 (and above). (Meanwhile 3.10 is the latest v3 branch, upstream at91bootstrap continued with v4 for new boards.) Python3 is most probably installed on any modern build host anyways, so it should not hurt much to enable the dependency unconditionally. Otherwise we might get an error message like this: 'at91bootstrap2' must depend on 'host-system-python3' for 'python3'! Signed-off-by: Alexander Dahl --- platforms/at91bootstrap2.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platforms/at91bootstrap2.in b/platforms/at91bootstrap2.in index 2ae27d64f..b64947a6a 100644 --- a/platforms/at91bootstrap2.in +++ b/platforms/at91bootstrap2.in @@ -2,6 +2,7 @@ menuconfig AT91BOOTSTRAP2 select BOOTLOADER + select HOST_SYSTEM_PYTHON3 tristate prompt "AT91 bootstrap 3.x " help @@ -36,7 +37,7 @@ if AT91BOOTSTRAP2 config AT91BOOTSTRAP2_VERSION string - default "3.8.5" + default "3.9.3" prompt "AT91 Bootstrap version" help Enter the AT91 Bootstrap version you want to build. Usually something like "3.8.5" -- 2.30.2