Skip to content

Commit 2213ba0

Browse files
committed
Fix networking for SPARC64
1 parent 62db3a4 commit 2213ba0

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# EmuGUI v1.2.3.5513 "Garuka Pula" (based on v1.2.2.5512)
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 pre-release.
6+
7+
## Changes compared to v1.2.2.5512
8+
9+
- SPARC64 VMs didn't have network capabilities under any circumstances. This is now fixed.
10+
111
# EmuGUI v1.2.2.5512 "Garuka Pula" (based on v1.2.1.5511)
212

313
## WARNING

dialogExecution/startVirtualMachine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def start_virtual_machine(self):
533533
qemu_cmd = qemu_cmd + f" -vga {self.vmSpecs[6]}"
534534

535535
if self.vmSpecs[7] != "none":
536-
if self.vmSpecs[1] == "i386" or self.vmSpecs[1] == "x86_64" or self.vmSpecs[1] == "ppc" or self.vmSpecs[1] == "ppc64" or self.vmSpecs[1] == "sparc":
536+
if self.vmSpecs[1] == "i386" or self.vmSpecs[1] == "x86_64" or self.vmSpecs[1] == "ppc" or self.vmSpecs[1] == "ppc64" or self.vmSpecs[1] == "sparc" or self.vmSpecs[1] == "sparc64":
537537
qemu_cmd = qemu_cmd + f" -net nic,model={self.vmSpecs[7]} -net user"
538538

539539
elif self.vmSpecs[1] == "mips64el" or self.vmSpecs[1] == "mipsel":

emugui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(self, parent=None):
119119
logman = errors.logman.LogMan()
120120
logman.generateLogID()
121121
logman.logFile = logman.setLogFile()
122-
self.version = "1.2.2.5512"
122+
self.version = "1.2.3.5513"
123123

124124
print(f"EmuGUI {self.version}")
125125

0 commit comments

Comments
 (0)