aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-03-17 20:58:11 +0000
committersickcodes <[email protected]>2021-03-17 20:58:11 +0000
commit57e8d0c06dfcbe4ab2b08ea9f2e626a46dcc11e2 (patch)
tree4e4af0ae44edc362134dcc7664ff02aea29c1396
parentUse RAM=max or RAM=half to suit all machines, dynamically. (diff)
downloaddocker-osx-57e8d0c06dfcbe4ab2b08ea9f2e626a46dcc11e2.tar.xz
docker-osx-57e8d0c06dfcbe4ab2b08ea9f2e626a46dcc11e2.zip
Typo: Use RAM=max or RAM=half to suit all machines, dynamically.
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 5be3862..d6e4370 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -220,7 +220,7 @@ RUN touch Launch.sh \
&& tee -a Launch.sh <<< '[[ "${RAM}" = max ]] && export RAM="$(("$(head -n1 /proc/meminfo | tr -dc "[:digit:]") / 900000"))"' \
&& 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 \' \
+ && tee -a Launch.sh <<< 'exec qemu-system-x86_64 -m ${RAM:-2}000 \' \
&& tee -a Launch.sh <<< '-cpu Penryn,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,+pcid,+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check \' \
&& tee -a Launch.sh <<< '-machine q35,accel=kvm:tcg \' \
&& tee -a Launch.sh <<< '-smp ${CPU_STRING:-${SMP:-4},cores=${CORES:-4}} \' \