From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 99686C433EF for ; Tue, 5 Oct 2021 16:20:51 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id CBFE161381 for ; Tue, 5 Oct 2021 16:20:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org CBFE161381 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=konsulko.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 333938169E; Tue, 5 Oct 2021 18:20:48 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=konsulko.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 75754820E3; Tue, 5 Oct 2021 18:20:46 +0200 (CEST) Received: from mail-qt1-f175.google.com (mail-qt1-f175.google.com [209.85.160.175]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 5C3C381197 for ; Tue, 5 Oct 2021 18:20:43 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=konsulko.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=tom.rini@gmail.com Received: by mail-qt1-f175.google.com with SMTP id t2so2631813qtx.8 for ; Tue, 05 Oct 2021 09:20:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id; bh=ZzN4sM5otD9U1l8rqkfpqxS6RkkGYVL1n8KUeYEuEHE=; b=3bNwmgDH30YAAlpDfKG9W/EVm67SJEKo5auMbZKzGnFhdRbb2nJ4++SNb49WieFrB9 KjZaKewRqdilP1yy1/XOFmOo0xiOaY7bMfQrNPKqI4qrOkXPE1ex2HS/uB1HLrgP/Hzh MtF52N09JdMilOHzK0WIdS745N/Ao7m1NQ5wTMUKqLbVJhCOLQ0bByepQRkj87m38XKc hvMGnVPsk46LEbQ+FeOhf5JHkgaLANsdeH7J2uj9IjPLc7nQGNr2ekSaF74sBGcr3bT7 P4jSRgAErUJljpUD+oqovRZZ4maEg9ijzwnK9nALiXPKnSNVDZBWGLMps+/cdd5lPPkp y/gw== X-Gm-Message-State: AOAM5311PVEZhC6waPzCkRQnYCmJZETBjKqHwywiV//eknuPzh0ieYh5 y4BIABhoWULVwdDk96eyNC/j9guJVg== X-Google-Smtp-Source: ABdhPJzsudZ8Xq2OEk+h3DBtK5wMmcJatB+UbFI/Jke7F7d0ckOjKIUUV/NoyVs3pvyqfD5+N8Pjmw== X-Received: by 2002:a05:622a:1047:: with SMTP id f7mr21258495qte.97.1633450841741; Tue, 05 Oct 2021 09:20:41 -0700 (PDT) Received: from bill-the-cat.lan (2603-6081-7b01-cbda-c976-e406-5df5-f01b.res6.spectrum.com. [2603:6081:7b01:cbda:c976:e406:5df5:f01b]) by smtp.gmail.com with ESMTPSA id m21sm9822500qka.69.2021.10.05.09.20.38 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 05 Oct 2021 09:20:38 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Subject: [PATCH] buildman: Add gcc-11.1.0 to the directory list Date: Tue, 5 Oct 2021 12:20:36 -0400 Message-Id: <20211005162036.14627-1-trini@konsulko.com> X-Mailer: git-send-email 2.17.1 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean While CI has been using gcc-11.1.0 for a long time, we have not updated buildman to match. Correct this omission. Signed-off-by: Tom Rini --- tools/buildman/toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index fd137f7300e7..4e2471f3e370 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -498,7 +498,7 @@ class Toolchains: if arch == 'aarch64': arch = 'arm64' base = 'https://www.kernel.org/pub/tools/crosstool/files/bin' - versions = ['9.2.0', '7.3.0', '6.4.0', '4.9.4'] + versions = ['11.1.0', '9.2.0', '7.3.0', '6.4.0', '4.9.4'] links = [] for version in versions: url = '%s/%s/%s/' % (base, arch, version) -- 2.17.1