-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
79 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ ipl.rom | |
|
||
/subprojects/libogc2 | ||
|
||
!res/qoob_pro_none_upgrade.elf | ||
!res/qoob_sx_13c_upgrade.elf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Trivial script to inject a BIOS image into a Qoob updater | ||
|
||
import sys | ||
|
||
bios = sys.argv[1] | ||
updater = sys.argv[2] | ||
outfile = sys.argv[3] | ||
|
||
with open(bios, "rb") as f: | ||
img = f.read() | ||
|
||
with open(updater, "rb") as f: | ||
out = bytearray(f.read()) | ||
|
||
if bios.endswith(".gcb"): | ||
if len(img) > 128 * 1024: | ||
raise "Qoob Pro BIOS image too big to fit in flasher" | ||
|
||
msg = b"QOOB Pro iplboot install\0" | ||
msg_offset = 0x1A68 | ||
img_offset = 0x1AE0 | ||
|
||
if bios.endswith(".qbsx"): | ||
if len(img) > 62800: | ||
raise "Qoob SX BIOS image too big to fit in flasher" | ||
|
||
msg = b"QOOB SX iplboot install\0" | ||
msg_offset = 7240 | ||
img_offset = 7404 | ||
|
||
out[msg_offset:msg_offset + len(msg)] = msg | ||
out[img_offset:img_offset + len(img)] = img | ||
|
||
with open(outfile, "wb") as f: | ||
f.write(out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.