summaryrefslogtreecommitdiffstats
path: root/core/includes
diff options
context:
space:
mode:
authorSimon Rettberg2022-06-13 16:06:13 +0200
committerSimon Rettberg2022-06-13 16:06:13 +0200
commit6e029092e97a8357631fd27847cf7c12d1306415 (patch)
tree6b3f035b4c61524cd191895addf3d55e7e5a1bf1 /core/includes
parent[hardware-stats] CPU temp: Add support for k10temp output format (diff)
downloadmltk-6e029092e97a8357631fd27847cf7c12d1306415.tar.gz
mltk-6e029092e97a8357631fd27847cf7c12d1306415.tar.xz
mltk-6e029092e97a8357631fd27847cf7c12d1306415.zip
[inc/chroot] tmpfs: 2 -> 4 GB (was not enough for recent NVIDIA)
Diffstat (limited to 'core/includes')
-rw-r--r--core/includes/chroot.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/includes/chroot.inc b/core/includes/chroot.inc
index 04db53ee..334cc094 100644
--- a/core/includes/chroot.inc
+++ b/core/includes/chroot.inc
@@ -91,7 +91,7 @@ chroot_prepare_mounts() {
# Newer kernels (5.x) cannot have upperdir as subdirectory of lowerdir - tmpfs
mkdir -p "${CHROOT_TMPFS}"
- mount -t tmpfs -o size=2G chrootupper "${CHROOT_TMPFS}" || perror "Could not mount tmpfs as upperdir"
+ mount -t tmpfs -o size=4G chrootupper "${CHROOT_TMPFS}" || perror "Could not mount tmpfs as upperdir"
mkdir -p "${CHROOT_UPPER_TMPFS}" || perror "Could not create ${CHROOT_UPPER_TMPFS}"
rsync -axHAX "${CHROOT_UPPERDIR}/" "${CHROOT_UPPER_TMPFS}/" || perror "Could not put upperdir into upupdir"