mirror of
https://github.com/elliotnunn/newworld-rom.git
synced 2025-01-03 02:29:58 +00:00
Restrict bootinfo to Mac mini
This is a development branch, and the prim-info patches in particular are *only* for the Mac mini.
This commit is contained in:
parent
391e66d4b9
commit
09bc6e3595
@ -14,14 +14,12 @@ def html_escape_forth(f):
|
|||||||
|
|
||||||
# The COMPATIBLE field at the top of the script
|
# The COMPATIBLE field at the top of the script
|
||||||
COMPATIBLE = [
|
COMPATIBLE = [
|
||||||
"MacRISC",
|
"PowerMac10,1",
|
||||||
"MacRISC2",
|
"PowerMac10,2",
|
||||||
"MacRISC3",
|
|
||||||
"MacRISC4",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# Changes to the Forth boot script, all off by default
|
# Changes to the Forth boot script, all off by default
|
||||||
DELETE_MODEL_CHECK = False
|
DELETE_MODEL_CHECK = True
|
||||||
DELETE_CHECKSUM_CHECK = False
|
DELETE_CHECKSUM_CHECK = False
|
||||||
G4_FIX = True
|
G4_FIX = True
|
||||||
|
|
||||||
@ -32,7 +30,8 @@ SET_MODEL_PROPERTY = 'PowerMac5,1' # Cube
|
|||||||
# ...and the "compatible" property? (empty strings not counted)
|
# ...and the "compatible" property? (empty strings not counted)
|
||||||
SET_COMPATIBLE_PROPERTY = [x for x in [
|
SET_COMPATIBLE_PROPERTY = [x for x in [
|
||||||
SET_MODEL_PROPERTY,
|
SET_MODEL_PROPERTY,
|
||||||
*COMPATIBLE,
|
"MacRISC",
|
||||||
|
"MacRISC2",
|
||||||
'Power Macintosh',
|
'Power Macintosh',
|
||||||
] if x]
|
] if x]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user