Skip to content

Commit ea9e941

Browse files
committedNov 10, 2024
Disable Apple Photo Access in the 7.5.2 image
Required to get it too boot with with DingusPPC (which can now do it - make it the default). Updates #219
1 parent 7d5ad78 commit ea9e941

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed
 

‎Images/System 7.5.2 HD.dsk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:de8a429fddd71f2482c9f68566af634facfb32853cf39817f651de1fef3f9919
2+
oid sha256:6c147002d1541eeb4c5a9bc50072a20c692c4c77cb25f712a433989b74c49cd3
33
size 52428800

‎src/disks.ts

+12-5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {
1717
NEXT_STATION,
1818
NEXT_STATION_TURBO_COLOR,
1919
POWER_MACINTOSH_G3_BEIGE,
20+
POWER_MACINTOSH_7500,
2021
} from "./machines";
2122

2223
type GeneratedChunkedFileSpec = Omit<
@@ -448,7 +449,7 @@ const SYSTEM_7_5_2: SystemDiskDef = {
448449
64, 65, 66, 67, 68, 69, 70, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
449450
90, 91, 92, 93, 94,
450451
],
451-
machines: [POWER_MACINTOSH_9500],
452+
machines: [POWER_MACINTOSH_7500, POWER_MACINTOSH_9500],
452453
appleTalkSupported: true,
453454
isUnstable: true,
454455
generatedSpec: () => import("./Data/System 7.5.2 HD.dsk.json"),
@@ -487,7 +488,7 @@ const SYSTEM_7_5_3_PPC: SystemDiskDef = {
487488
121, 122, 123, 124, 125, 129, 130, 131, 133, 134, 135, 136, 137, 139,
488489
140, 141, 142, 143, 144, 145, 146, 147, 148, 152, 153, 155,
489490
],
490-
machines: [POWER_MACINTOSH_9500],
491+
machines: [POWER_MACINTOSH_9500, POWER_MACINTOSH_7500],
491492
appleTalkSupported: true,
492493
generatedSpec: () => import("./Data/System 7.5.3 (PPC) HD.dsk.json"),
493494
};
@@ -538,6 +539,7 @@ const SYSTEM_7_5_5: SystemDiskDef = {
538539
MAC_II,
539540
MAC_IIFX,
540541
POWER_MACINTOSH_9500,
542+
POWER_MACINTOSH_7500,
541543
],
542544
appleTalkSupported: true,
543545
generatedSpec: () => import("./Data/System 7.5.5 HD.dsk.json"),
@@ -557,7 +559,12 @@ const MAC_OS_7_6: SystemDiskDef = {
557559
153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
558560
167, 168, 169, 170, 171,
559561
],
560-
machines: [QUADRA_650, MAC_IIFX, POWER_MACINTOSH_9500],
562+
machines: [
563+
QUADRA_650,
564+
MAC_IIFX,
565+
POWER_MACINTOSH_9500,
566+
POWER_MACINTOSH_7500,
567+
],
561568
appleTalkSupported: true,
562569
generatedSpec: () => import("./Data/Mac OS 7.6 HD.dsk.json"),
563570
notable: true,
@@ -579,7 +586,7 @@ const MAC_OS_8_0: SystemDiskDef = {
579586
189, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
580587
205, 206, 208,
581588
],
582-
machines: [QUADRA_650, POWER_MACINTOSH_9500],
589+
machines: [QUADRA_650, POWER_MACINTOSH_9500, POWER_MACINTOSH_7500],
583590
appleTalkSupported: true,
584591
appearance: "Platinum",
585592
generatedSpec: () => import("./Data/Mac OS 8.0 HD.dsk.json"),
@@ -600,7 +607,7 @@ const MAC_OS_8_1: SystemDiskDef = {
600607
155, 158, 159, 160, 161, 162, 163, 169, 170, 171, 172, 175, 176, 177,
601608
179, 181,
602609
],
603-
machines: [QUADRA_650, POWER_MACINTOSH_9500],
610+
machines: [QUADRA_650, POWER_MACINTOSH_9500, POWER_MACINTOSH_7500],
604611
appleTalkSupported: true,
605612
appearance: "Platinum",
606613
generatedSpec: () => import("./Data/Mac OS 8.1 HD.dsk.json"),

0 commit comments

Comments
 (0)
Please sign in to comment.