From d7470a8c6195387ad048eb48e1b229ed60434382 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Wed, 8 Apr 2026 11:45:33 +0800 Subject: [PATCH] graphics/libyuv: Download libyuv from NuttX Mirror Repo NuttX Build Target `sim:nxcamera` failed to build because chromium.googlesource.com is blocking our download of libyuv library: https://github.com/apache/nuttx/actions/runs/24106742084/job/70356374433#step:10:603 ``` Configuration/Tool: sim/nxcamera Building NuttX... curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/stable.tar.gz -o libyuv.tar.gz gzip: stdin: not in gzip format ``` This PR updates the libyuv Makefile to download libyuv from the NuttX Mirror Repo instead: https://github.com/NuttX/nuttx/releases/tag/libyuv Signed-off-by: Lup Yuen Lee --- graphics/libyuv/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/libyuv/Makefile b/graphics/libyuv/Makefile index d15033fd14f..e4421ee1dc9 100644 --- a/graphics/libyuv/Makefile +++ b/graphics/libyuv/Makefile @@ -29,7 +29,7 @@ CXXFLAGS += -Wno-shadow -Wno-undef CXXSRCS = $(wildcard $(SRCDIR)/source/*.cc) libyuv.tar.gz: - $(Q) curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz + $(Q) curl -L https://github.com/NuttX/nuttx/releases/download/libyuv/libyuv-refs_heads_$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz $(Q) mkdir -p $(SRCDIR) $(Q) tar zxf libyuv.tar.gz --directory $(SRCDIR) ifeq ($(CONFIG_LIBYUV_BRANCH),"stable")