From 96d147c29209f27ec1ddd5a782f17433fa317141 Mon Sep 17 00:00:00 2001 From: Theo Cabrerizo Diem Date: Mon, 27 May 2024 02:16:58 +0200 Subject: [PATCH] Update start_chroot_script --- src/modules/klipper/start_chroot_script | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/klipper/start_chroot_script b/src/modules/klipper/start_chroot_script index d28725eec..0726ee2f2 100644 --- a/src/modules/klipper/start_chroot_script +++ b/src/modules/klipper/start_chroot_script @@ -74,6 +74,9 @@ pushd "/home/${BASE_USER}" &> /dev/null || exit 1 echo_green "Creating Virtualenv for Klipper (klippy-env) ..." sudo -u "${BASE_USER}" virtualenv -p python3 "${KLIPPER_PYTHON_DIR}" echo_green "Installing klippy Python Dependencies ..." +df -h +sudo mount -t tmpfs -o size=1000Mi,mode=1777 devfs /tmp +df -h sudo -u "${BASE_USER}" "${KLIPPER_PYTHON_DIR}"/bin/pip install -r "${KLIPPER_SRC_DIR}"/"${KLIPPER_PYENV_REQ}" popd &> /dev/null || exit 1