From 2aca5d33529a95fc99ed7e6d26565cf6e636aaf1 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Mon, 29 Dec 2025 09:21:12 +0000 Subject: [PATCH] run_sdk_container: Mount /tmp with exec to fix flatcar_workon flatcar_workon creates a temporary PORTAGE_TMPDIR. It's probably a good idea for an SDK in general anyway. Signed-off-by: James Le Cuirot --- run_sdk_container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_sdk_container b/run_sdk_container index 18d45ef0a0..5c298ba218 100755 --- a/run_sdk_container +++ b/run_sdk_container @@ -140,7 +140,7 @@ if [[ -z ${stat} ]] ; then docker_flags=( "${tty[@]}" -i - --mount type=tmpfs,destination=/tmp + --tmpfs /tmp:exec -v /dev:/dev -v "${PWD}/sdk_container:/mnt/host/source/" -v "${PWD}/__build__/images:/mnt/host/source/src/build"