diff --git a/scripts/bootmake.py b/scripts/bootmake.py index 8beffba..235465d 100755 --- a/scripts/bootmake.py +++ b/scripts/bootmake.py @@ -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