From 80b8a9235ea887557940f6bab900761ce01e332a Mon Sep 17 00:00:00 2001 From: kl0wn <4371017+kl0wn@users.noreply.github.com> Date: Wed, 16 Oct 2019 16:29:27 -0500 Subject: [PATCH] Add EEPROM settings --- main.py | 8 +++++++- settings.ui | 35 ++++++++++++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 3ad4f22..e050772 100755 --- a/main.py +++ b/main.py @@ -27,6 +27,7 @@ def reset(self): 'xqemu_path': '/path/to/xqemu', 'mcpx_path': '/path/to/mcpx.bin', 'flash_path': '/path/to/flash.bin', + 'eeprom_path': '/path/to/eeprom.bin', 'hdd_path': '/path/to/hdd.img', 'hdd_locked': True, 'dvd_present': True, @@ -115,6 +116,8 @@ def bindDropdownWidget(widget, var): bindFilePicker(self.setMcpxPath, self.mcpxPath) bindTextWidget(self.flashPath, 'flash_path') bindFilePicker(self.setFlashPath, self.flashPath) + bindTextWidget(self.eepromPath, 'eeprom_path') + bindFilePicker(self.browseEepromPath, self.eepromPath) bindTextWidget(self.hddPath, 'hdd_path') bindFilePicker(self.setHddPath, self.hddPath) bindCheckWidget(self.hddLocked, 'hdd_locked') @@ -229,6 +232,9 @@ def escape_path(path): flash_path = settings.settings['flash_path'] check_path(flash_path) flash_path_arg = escape_path(flash_path) + eeprom_path = settings.settings['eeprom_path'] + check_path(eeprom_path) + eeprom_path_arg = escape_path(eeprom_path) hdd_path = settings.settings['hdd_path'] check_path(hdd_path) hdd_path_arg = escape_path(hdd_path) @@ -246,7 +252,7 @@ def escape_path(path): # Build qemu launch cmd cmd = [xqemu_path, '-cpu','pentium3', - '-machine','xbox%(accel_arg)s,bootrom=%(mcpx_path_arg)s%(short_anim_arg)s' % locals(), + '-machine', 'xbox%(accel_arg)s,bootrom=%(mcpx_path_arg)s,eeprom=%(eeprom_path_arg)s%(short_anim_arg)s' % locals(), '-m', '%(sys_memory)s' % locals(), '-bios', '%(flash_path_arg)s' % locals(), '-drive','file=%(hdd_path_arg)s,index=0,media=disk%(hdd_lock_arg)s' % locals(), diff --git a/settings.ui b/settings.ui index 5c590a7..8beda1a 100644 --- a/settings.ui +++ b/settings.ui @@ -10,7 +10,7 @@ 0 0 660 - 352 + 385 @@ -205,6 +205,39 @@ + + + + EEPROM + + + + + + EEPROM Image: + + + + + + + + + + Choose... + + + + + + + EEPROM writeback is not currently supported. Changes to EEPROM will not be saved! + + + + + +