From a359514630165fe03c7bd159af10b7d20d08334a Mon Sep 17 00:00:00 2001 From: Yu Chien Peter Lin Date: Tue, 19 Nov 2024 09:46:01 +0800 Subject: [PATCH 1/3] DEVELOPERS: update maintainer of Andes platform I will lose access to my email next week, so hand it over to Leo Yu-Chi Liang. Signed-off-by: Yu Chien Peter Lin Reviewed-by: Leo Yu-Chi Liang Signed-off-by: Julien Olivain --- DEVELOPERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPERS b/DEVELOPERS index fc189fa6449c..d75df5cc5509 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -2515,7 +2515,7 @@ F: package/dbus-broker/ F: package/systemd/ F: package/tcf-agent/ -N: Yu Chien Peter Lin +N: Leo Yu-Chi Liang F: board/andes F: configs/andes_ae350_45_defconfig F: package/andes-spi-burn/ From f3b82925a9a4ce71024f78663547c78ab665d840 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Tue, 19 Nov 2024 00:24:20 +0100 Subject: [PATCH 2/3] package/skopeo: select BR2_PACKAGE_HOST_GO host-skopeo fail to build, using the commands: echo BR2_PACKAGE_HOST_SKOPEO=y >.config make olddefconfig make host-skopeo This commit fixes the issue by selecting BR2_PACKAGE_HOST_GO in the Config.in file. Fixes: make: *** No rule to make target 'host-', needed by '/buildroot/output/build/host-go-1.23.2/.stamp_configured'. Stop. Reviewed-by: Yann E. MORIN Signed-off-by: Julien Olivain --- package/skopeo/Config.in.host | 1 + 1 file changed, 1 insertion(+) diff --git a/package/skopeo/Config.in.host b/package/skopeo/Config.in.host index 334a12b6fc5f..1c1c8f3ebe08 100644 --- a/package/skopeo/Config.in.host +++ b/package/skopeo/Config.in.host @@ -2,6 +2,7 @@ config BR2_PACKAGE_HOST_SKOPEO bool "host skopeo" depends on BR2_PACKAGE_HOST_GO_HOST_ARCH_SUPPORTS depends on BR2_PACKAGE_HOST_GO_HOST_CGO_LINKING_SUPPORTS + select BR2_PACKAGE_HOST_GO help skopeo is a command line utility that performs various operations on container images and image repositories. From 575d971820dedf7a0c6e217deb57ecd4db1218f5 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Tue, 17 Sep 2024 09:05:33 +0200 Subject: [PATCH 3/3] package/go: ensure there is a host-go provider, take 2 Commit 7b2a164b7460 (package/go/go-bin: new host-go provider) broke the case for prompt-less, host-only go packages, as the main host-go symbol would not be selected. This very same use-case was initially broken when the first go-src provider was introduced with fa2536ec9401 (package/go: make host package a virtual package), and subsequently fixed in 99a5d51c6e9f (package/go: ensure there is a host-go provider), so 7b2a164b7460 is causing a regression of a fixed regression. Fix that the very same way it was originally fixed. Signed-off-by: Yann E. MORIN Cc: Yann E. MORIN Cc: Thomas Perale Signed-off-by: Julien Olivain --- package/go/Config.in.host | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package/go/Config.in.host b/package/go/Config.in.host index 30260b573bcd..7e354b329882 100644 --- a/package/go/Config.in.host +++ b/package/go/Config.in.host @@ -78,13 +78,13 @@ config BR2_PACKAGE_HOST_GO_BIN endchoice +endif + config BR2_PACKAGE_PROVIDES_HOST_GO string - # Default to host-go-src + # Default to host-go-bin unless src explicitly requested default "host-go-src" if BR2_PACKAGE_HOST_GO_SRC - default "host-go-bin" if BR2_PACKAGE_HOST_GO_BIN - -endif + default "host-go-bin" source "package/go/go-bin/Config.in.host" source "package/go/go-bootstrap-stage1/Config.in.host"