All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni via buildroot <buildroot@buildroot.org>
To: "Yann E. MORIN" <yann.morin.1998@free.fr>,
	Romain Naour <romain.naour@gmail.com>,
	Buildroot List <buildroot@buildroot.org>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Subject: [Buildroot] [PATCH v2 00/14] Another set of Bootlin toolchain integration improvements
Date: Wed,  8 Jun 2022 09:10:12 +0200	[thread overview]
Message-ID: <20220608071027.3384469-1-thomas.petazzoni@bootlin.com> (raw)

Hello,

Overall summary
===============

Patches 1 to 12 in this series are fixes for autobuilder
issues. Patches 13 and 14 are improvements.

Patches 1 and 2 fix the issue of RISC-V 64-bit toolchains being
available on MMU-less architectures, even though they are not
supported by the toolchain.

Patches 3 and 4 fix the issue of ARM little endian toolchains being
selectable for ARM big endian architectures.

Patches 5 and 6 fix the issue of i686 toolchains being used for < i686
platforms.

Patches 7, 8 and 9 fix the issue of an error when trying to copy
gdbserver, with toolchains that don't have gdbserver.

Patches 10, 11 and 12 fix the issue of the "mips64" Bootlin toolchains
being obsolete, but the gen-bootlin-toolchains still thinking they
were available. This caused some mips64 n64 configurations to be
thought of having Bootlin toolchains available, but in fact no such
toolchains were provided. We fix this by making sure we check if an
architecture has valid toolchains, and erroring out if not. And of
course, we remove the "mips64" toolchain config.

Patches 13 and 14 add support for the ARMv7 big-endian toolchains
provided by toolchains.bootlin.com.

Changes since v1
================

 - Patches 10, 11 and 12 added to fix the "mips64" issue.

Thomas

Thomas Petazzoni (14):
  support/scripts/gen-bootlin-toolchains: fix RISC-V 64-bit toolchain
    description
  support/testing,toolchain/toolchain-external/toolchain-external-bootlin:
    regenerate with latest gen-bootlin-toolchains script
  support/scripts/gen-bootlin-toolchains: improve dependencies of ARM
    toolchains
  toolchain/toolchain-external/toolchain-external-bootlin: regenerate
    with BR2_ARM dependency
  support/scripts/gen-bootlin-toolchains: adjust dependencies of i686
    toolchains
  toolchain/toolchain-external/toolchain-external-bootlin: regenerate
    after i686 toolchain dependency fixes
  toolchain/toolchain-external: add
    BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER option
  support/scripts/gen-bootlin-toolchains: make use of
    BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER
  toolchain/toolchain-external/toolchain-external-bootlin: regenerate
    with BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER
  support/scripts/gen-bootlin-toolchains: check that toolchains exists
    for a certain arch
  support/scripts/gen-bootlin-toolchains: drop "mips64" architecture
    variant
  toolchain/toolchain-external/toolchain-external-bootlin: regenerate
    after mips64 toolchain removal
  support/scripts/gen-bootlin-toolchains: add support for ARMv7 big
    endian toolchain
  support/testing,toolchain/toolchain-external/toolchain-external-bootlin:
    regenerate with ARMv7 big endian toolchain

 support/scripts/gen-bootlin-toolchains        |  44 +++-
 .../tests/toolchain/test_external_bootlin.py  | 102 ++++++++
 toolchain/toolchain-external/Config.in        |   4 +
 .../Config.in.options                         | 234 +++++++++++++++++-
 .../toolchain-external-bootlin.hash           |  12 +
 .../toolchain-external-bootlin.mk             |  36 +++
 6 files changed, 412 insertions(+), 20 deletions(-)

-- 
2.35.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

             reply	other threads:[~2022-06-08  7:10 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-08  7:10 Thomas Petazzoni via buildroot [this message]
2022-06-08  7:10 ` [Buildroot] [PATCH v2 01/14] support/scripts/gen-bootlin-toolchains: fix RISC-V 64-bit toolchain description Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 02/14] support/testing, toolchain/toolchain-external/toolchain-external-bootlin: regenerate with latest gen-bootlin-toolchains script Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 03/14] support/scripts/gen-bootlin-toolchains: improve dependencies of ARM toolchains Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 04/14] toolchain/toolchain-external/toolchain-external-bootlin: regenerate with BR2_ARM dependency Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 05/14] support/scripts/gen-bootlin-toolchains: adjust dependencies of i686 toolchains Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 06/14] toolchain/toolchain-external/toolchain-external-bootlin: regenerate after i686 toolchain dependency fixes Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 07/14] toolchain/toolchain-external: add BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER option Thomas Petazzoni via buildroot
2022-06-14 15:34   ` Arnout Vandecappelle
2022-06-14 15:58     ` Thomas Petazzoni via buildroot
2022-06-14 16:56       ` Arnout Vandecappelle
2022-06-14 21:41         ` Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 08/14] support/scripts/gen-bootlin-toolchains: make use of BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 09/14] toolchain/toolchain-external/toolchain-external-bootlin: regenerate with BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 10/14] support/scripts/gen-bootlin-toolchains: check that toolchains exists for a certain arch Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 11/14] support/scripts/gen-bootlin-toolchains: drop "mips64" architecture variant Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 12/14] toolchain/toolchain-external/toolchain-external-bootlin: regenerate after mips64 toolchain removal Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 13/14] support/scripts/gen-bootlin-toolchains: add support for ARMv7 big endian toolchain Thomas Petazzoni via buildroot
2022-06-08  7:10 ` [Buildroot] [PATCH v2 14/14] support/testing, toolchain/toolchain-external/toolchain-external-bootlin: regenerate with " Thomas Petazzoni via buildroot
2022-06-14 15:43 ` [Buildroot] [PATCH v2 00/14] Another set of Bootlin toolchain integration improvements Arnout Vandecappelle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220608071027.3384469-1-thomas.petazzoni@bootlin.com \
    --to=buildroot@buildroot.org \
    --cc=romain.naour@gmail.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=yann.morin.1998@free.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.