From 4b049c4b7cbf9873be6b82e5298fc6492b49067d Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Thu, 30 Oct 2025 03:53:32 -0500 Subject: [PATCH] Add iputils-ping to install dependencies script (#917) The new dev_deploy.sh uses ping to check if we can see the JetKVM, but mcr.microsoft.com/devcontainers/go:1.25-trixie does not have ping installed. --- .devcontainer/install-deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/install-deps.sh b/.devcontainer/install-deps.sh index 079c8cdc..e2ff43e6 100755 --- a/.devcontainer/install-deps.sh +++ b/.devcontainer/install-deps.sh @@ -14,6 +14,7 @@ set -ex export DEBIAN_FRONTEND=noninteractive sudo apt-get update && \ sudo apt-get install -y --no-install-recommends \ + iputils-ping \ build-essential \ device-tree-compiler \ gperf g++-multilib gcc-multilib \ @@ -33,4 +34,4 @@ wget https://github.com/jetkvm/rv1106-system/releases/download/${BUILDKIT_VERSIO sudo tar --use-compress-program="unzstd --long=31" -xvf buildkit.tar.zst -C /opt/jetkvm-native-buildkit && \ rm buildkit.tar.zst popd -rm -rf "${BUILDKIT_TMPDIR}" \ No newline at end of file +rm -rf "${BUILDKIT_TMPDIR}"