From bbfcb19c556d618fd024458cda28fb1d3096f199 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 28 Dec 2021 10:15:40 +0100 Subject: [PATCH] support/scripts/gen-bootlin-toolchains: handle RISC-V 64-bit toolchain change toolchains.bootlin.com no longer provides a LP64 RISC-V 64-bit toolchain, but a more useful LP64D RISC-V 64-bit toolchain. Of course, the old tarballs remain available, but no new versions of the LP64 toolchain will be produced. This commit reflects this change in the gen-bootlin-toolchains script. Signed-off-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- support/scripts/gen-bootlin-toolchains | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/scripts/gen-bootlin-toolchains b/support/scripts/gen-bootlin-toolchains index 902b7795ee..f160a44152 100755 --- a/support/scripts/gen-bootlin-toolchains +++ b/support/scripts/gen-bootlin-toolchains @@ -158,8 +158,8 @@ arches = { 'conditions': ['BR2_riscv', 'BR2_riscv_g', 'BR2_RISCV_32', 'BR2_RISCV_ABI_ILP32D'], 'prefix': 'riscv32', }, - 'riscv64': { - 'conditions': ['BR2_riscv', 'BR2_riscv_g', 'BR2_RISCV_64', 'BR2_RISCV_ABI_LP64'], + 'riscv64-lp64d': { + 'conditions': ['BR2_riscv', 'BR2_riscv_g', 'BR2_RISCV_64', 'BR2_RISCV_ABI_LP64D'], 'prefix': 'riscv64', }, 'sh-sh4': {