From 67992c2ddbda8c447a84c43b9b02957b1945f2dc Mon Sep 17 00:00:00 2001 From: Slawek <6erun@strumecki.com> Date: Wed, 13 Aug 2025 18:46:47 -0700 Subject: [PATCH] added /dev/pts to system-mounts --- bin/mount-image-callback | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mount-image-callback b/bin/mount-image-callback index a1e7535..529f383 100755 --- a/bin/mount-image-callback +++ b/bin/mount-image-callback @@ -368,7 +368,7 @@ mount_callback_umount() { --overlay) overlay=true;; -p|--proc) bmounts="${bmounts:+${bmounts} }/proc";; -s|--sys) bmounts="${bmounts:+${bmounts} }/sys";; - -S|--system-mounts) bmounts="/dev /proc /sys";; + -S|--system-mounts) bmounts="/dev /proc /sys /dev/pts";; --system-resolvconf) system_resolvconf=true;; -v|--verbose) VERBOSITY=$((${VERBOSITY}+1));; --opts) opts="${opts} $next"; shift;;