From 20ae91a95c1f9250ba005ff73a02f999ac416bea Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Sat, 7 Mar 2026 15:18:51 +1000 Subject: [PATCH] arm64-rdtclient: update dotnet to 10.0 --- ct/rdtclient.sh | 3 +-- install/arm/rdtclient-install.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ct/rdtclient.sh b/ct/rdtclient.sh index eb515170f..cc07a546c 100644 --- a/ct/rdtclient.sh +++ b/ct/rdtclient.sh @@ -69,8 +69,7 @@ function update_script_arm64() { msg_info "Updating .NET Runtime" rm -rf /usr/share/dotnet /usr/bin/dotnet $STD apt-get install -y libc6 libgcc-s1 libgssapi-krb5-2 liblttng-ust1 libssl3 libstdc++6 zlib1g libicu76 - curl -fsSL -o /tmp/dotnet.tar.gz "https://download.visualstudio.microsoft.com/download/pr/6f79d99b-dc38-4c44-a549-32329419bb9f/a411ec38fb374e3a4676647b236ba021/dotnet-sdk-9.0.100-linux-arm64.tar.gz" - mkdir -p /usr/share/dotnet + curl -fsSL -o /tmp/dotnet.tar.gz "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.103/dotnet-sdk-10.0.103-linux-arm64.tar.gz" tar -zxf /tmp/dotnet.tar.gz -C /usr/share/dotnet ln -sf /usr/share/dotnet/dotnet /usr/bin/dotnet rm -f /tmp/dotnet.tar.gz diff --git a/install/arm/rdtclient-install.sh b/install/arm/rdtclient-install.sh index 53a4a557a..e2892d4fd 100644 --- a/install/arm/rdtclient-install.sh +++ b/install/arm/rdtclient-install.sh @@ -7,7 +7,7 @@ install_dotnet_runtime() { msg_info "Installing ASP.NET Core Runtime" $STD apt-get install -y libc6 libgcc-s1 libgssapi-krb5-2 liblttng-ust1 libssl3 libstdc++6 zlib1g libicu76 - curl -fsSL -o /tmp/dotnet.tar.gz "https://download.visualstudio.microsoft.com/download/pr/6f79d99b-dc38-4c44-a549-32329419bb9f/a411ec38fb374e3a4676647b236ba021/dotnet-sdk-9.0.100-linux-arm64.tar.gz" + curl -fsSL -o /tmp/dotnet.tar.gz "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.103/dotnet-sdk-10.0.103-linux-arm64.tar.gz" mkdir -p /usr/share/dotnet tar -zxf /tmp/dotnet.tar.gz -C /usr/share/dotnet ln -sf /usr/share/dotnet/dotnet /usr/bin/dotnet