From 09bc6e35950711e86f67552ba19e57b036883d6e Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Sun, 8 Apr 2018 19:21:47 +0800 Subject: [PATCH] Restrict bootinfo to Mac mini This is a development branch, and the prim-info patches in particular are *only* for the Mac mini. --- scripts/bootmake.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/bootmake.py b/scripts/bootmake.py index 0234b4b..57af3d5 100755 --- a/scripts/bootmake.py +++ b/scripts/bootmake.py @@ -14,14 +14,12 @@ def html_escape_forth(f): # The COMPATIBLE field at the top of the script COMPATIBLE = [ - "MacRISC", - "MacRISC2", - "MacRISC3", - "MacRISC4", + "PowerMac10,1", + "PowerMac10,2", ] # Changes to the Forth boot script, all off by default -DELETE_MODEL_CHECK = False +DELETE_MODEL_CHECK = True DELETE_CHECKSUM_CHECK = False G4_FIX = True @@ -32,7 +30,8 @@ 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, + "MacRISC", + "MacRISC2", 'Power Macintosh', ] if x]