diff options
| author | sickcodes <[email protected]> | 2021-03-17 21:20:31 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-03-17 21:20:31 +0000 |
| commit | d4b8a0f2be50c06ab3dffed0bba35da948df4ceb (patch) | |
| tree | 1809419e262b4bfc571eb6dc5ed293d88775e676 /Dockerfile | |
| parent | Typo: Use RAM=max or RAM=half to suit all machines, dynamically. (diff) | |
| download | docker-osx-d4b8a0f2be50c06ab3dffed0bba35da948df4ceb.tar.xz docker-osx-d4b8a0f2be50c06ab3dffed0bba35da948df4ceb.zip | |
Fix RAM math error for -e RAM=max
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,7 +217,7 @@ RUN touch Launch.sh \ && tee -a Launch.sh <<< 'set -eu' \ && tee -a Launch.sh <<< 'sudo chown $(id -u):$(id -g) /dev/kvm 2>/dev/null || true' \ && tee -a Launch.sh <<< 'sudo chown -R $(id -u):$(id -g) /dev/snd 2>/dev/null || true' \ - && tee -a Launch.sh <<< '[[ "${RAM}" = max ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 900000"))"' \ + && tee -a Launch.sh <<< '[[ "${RAM}" = max ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 1000000"))"' \ && tee -a Launch.sh <<< '[[ "${RAM}" = half ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 2000000"))"' \ && tee -a Launch.sh <<< 'sudo chown -R $(id -u):$(id -g) /dev/snd 2>/dev/null || true' \ && tee -a Launch.sh <<< 'exec qemu-system-x86_64 -m ${RAM:-2}000 \' \ |