summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-08-08 12:18:36 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2024-08-08 12:18:36 -0400
commit8978b33f26f88540b81123dbaac0f4e62eb6216a (patch)
treec89927d1e0f3f5e7dde5cd0b99d3dc636ac8b029
parent017239c373f9f010462113657b9b6f70f3eef1b7 (diff)
root_image: using debian cargo/rustc, not rustup
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rwxr-xr-xroot_image5
1 files changed, 0 insertions, 5 deletions
diff --git a/root_image b/root_image
index 93a9784..1366af9 100755
--- a/root_image
+++ b/root_image
@@ -254,11 +254,6 @@ update_packages()
_chroot "$MNT" apt-get -qq upgrade
_chroot "$MNT" apt-get -qq install --no-install-recommends "${PACKAGES[@]}"
rm -f "$MNT/var/cache/apt/archives/*.deb"
-
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > "$MNT"/tmp/rustup.sh
- chmod 755 "$MNT"/tmp/rustup.sh
-
- _chroot "$MNT" /tmp/rustup.sh -y
}
trim_image()