Edit boot script to work on the mini

Released as "2018-02-28 Even neater mini hack PowerMac5,1.hqx"
This commit is contained in:
Elliot Nunn 2018-03-02 16:51:22 +08:00
parent ce5cc9bf2b
commit 806732000b
1 changed files with 8 additions and 8 deletions

View File

@ -15,25 +15,25 @@ def html_escape_forth(f):
# The COMPATIBLE field at the top of the script
COMPATIBLE = [
"MacRISC",
# "MacRISC2",
# "MacRISC3",
# "MacRISC4",
"MacRISC2",
"MacRISC3",
"MacRISC4",
]
# Changes to the Forth boot script, all off by default
DELETE_MODEL_CHECK = False
DELETE_CHECKSUM_CHECK = False
G4_FIX = False
G4_FIX = True
# *After* OF has loaded this file, set the "model" property?
SET_MODEL_PROPERTY = ''
# SET_MODEL_PROPERTY = 'PowerMac5,1' # Cube
SET_MODEL_PROPERTY = 'PowerMac5,1' # Cube
# ...and the "compatible" property? (empty strings not counted)
SET_COMPATIBLE_PROPERTY = [x for x in [
# SET_MODEL_PROPERTY,
# *COMPATIBLE,
# 'Power Macintosh',
SET_MODEL_PROPERTY,
*COMPATIBLE,
'Power Macintosh',
] if x]
# Adds code to set the AAPL,debug property early in the boot script