Revision 1ce892cb1ce970d8ee6ffcecc22351c84e67fca4 authored by Bin Meng on 21 June 2021, 23:33:21 UTC, committed by Tom Rini on 22 June 2021, 13:06:03 UTC
MSYS2 Windows build started to fail since yesterday (Jun 21):

  checking keyring...
  checking package integrity...
  error: gcc-libs: signature from "David Macek <david.macek.0@gmail.com>" is unknown trust
  :: File /var/cache/pacman/pkg/gcc-libs-10.2.0-1-x86_64.pkg.tar.zst is corrupted (invalid or corrupted package (PGP signature)).
  error: gcc: signature from "David Macek <david.macek.0@gmail.com>" is unknown trust
  :: File /var/cache/pacman/pkg/gcc-10.2.0-1-x86_64.pkg.tar.zst is corrupted (invalid or corrupted package (PGP signature)).
  error: failed to commit transaction (invalid or corrupted package)
  Errors occurred, no packages were upgraded.

Switching to the latest installer (version 20210604) seems to fix it.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Tested-by: Tom Rini <trini@konsulko.com>
1 parent 97c8cb5
Raw File
show-gnu-make
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0+
#
# Show the command name for GNU Make
#
# U-Boot is supposed to be built on various platforms.
# One problem is that the command 'make' is not always GNU Make.
# (For ex. the command name for GNU Make on FreeBSD is usually 'gmake'.)
# It is not a good idea to hard-code the command name in scripts
# where where GNU Make is expected.
# Call this helper script to get the command name for GNU Make.

gnu_make=

for m in make gmake
do
	if $m --version 2>/dev/null | grep -q GNU; then
		echo $m
		exit 0
	fi
done

exit 1
back to top