Skip to content

Commit d619680

Browse files
committed
Fix ARM machine issue
1 parent 2fee4c9 commit d619680

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# EmuGUI v2.0.9.5620 "Ioana Rosa" (based on v2.0.8.5619)
2+
3+
## WARNING
4+
5+
- You now need the latest version of your Linux distribution or at least Windows 10 to get official support for this release.
6+
7+
## Changes compared to v2.0.8.5619
8+
9+
- EmuGUI now defaults ARM machines to virt if "Let QEMU decide is selected".
10+
11+
## Known issues
12+
13+
- Unfortunately, you might have to run EmuGUI from the terminal on Linux.
14+
- You will not be notified about any more updates for now as update.txt will not be updated.
15+
- As for the TPM functionality, you must run `mkdir (insert-path-here)` and `swtpm socket --tpm2 --tpmstate dir=(insert-path-here) --ctrl type=unixio,path=(insert-path-here)/swtpm-sock --log level=20` in a terminal (You can leave the `--tpm2` argument away tho if you plan to use TPM 1.2 instead).
16+
- The QCOW2 format is prone to not work for some Windows VMs.
17+
118
# EmuGUI v2.0.8.5619 "Ioana Rosa" (based on v2.0.7.5618)
219

320
## WARNING

delcache.sh

100644100755
File mode changed.

dialogExecution/startVirtualMachine.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,9 @@ def start_virtual_machine(self):
409409
if self.vmSpecs[2] != "Let QEMU decide":
410410
qemu_cmd = qemu_cmd + f" -M {self.vmSpecs[2]}"
411411

412+
elif self.vmSpecs[1] == "aarch64" or self.vmSpecs[1] == "arm":
413+
qemu_cmd = qemu_cmd + " -M virt"
414+
412415
if self.vmSpecs[3] != "Let QEMU decide":
413416
qemu_cmd = qemu_cmd + f" -cpu {self.vmSpecs[3]}"
414417

emugui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def __init__(self, parent=None):
129129
logman = errors.logman.LogMan()
130130
logman.generateLogID()
131131
logman.logFile = logman.setLogFile()
132-
self.version = "2.0.8.5619"
132+
self.version = "2.0.9.5620"
133133

134134
self.architectures = [
135135
["i386", self.lineEdit_4],
@@ -227,7 +227,7 @@ def __init__(self, parent=None):
227227
except:
228228
pass
229229

230-
self.versionCode = 5619
230+
self.versionCode = 5620
231231

232232
if platform.system() == "Windows":
233233
self.connection = platformSpecific.windowsSpecific.setupWindowsBackend()

0 commit comments

Comments
 (0)