Optical Beta #150
Replies: 6 comments 14 replies
-
More CD images of MacOS 7.6.1, 8.1, Legacy on |
Beta Was this translation helpful? Give feedback.
-
I'm attempting to install A/UX using a BlueSCSI to mount the install CD toast image. The A/UX installer is very picky on hardware. What does the CD drive hardware look like to the OS? |
Beta Was this translation helpful? Give feedback.
-
PBREG->CRH = 0x11111111*DB_MODE_IN shows warning (integer overflow). Should " * " be changed ? (BlueSCSI.h) // Put DB and DP in output mode
#define SCSI_DB_OUTPUT() { PBREG->CRL=(PBREG->CRL &0xfffffff0)|DB_MODE_OUT; PBREG->CRH = 0x11111111 * DB_MODE_OUT; }
// Put DB and DP in input mode
#define SCSI_DB_INPUT() { PBREG->CRL=(PBREG->CRL &0xfffffff0)|DB_MODE_IN ; PBREG->CRH = (uint32_t)(0x11111111 * DB_MODE_IN); } |
Beta Was this translation helpful? Give feedback.
-
I tried to attach the Myst.toast_.sit from https://macintoshgarden.org/games/myst as SCSI ID6. On my MacOS8 machine, the System Profiler can see a volume called Myst, but it's not getting mounted. |
Beta Was this translation helpful? Give feedback.
-
Did you unstuff the file first to restore it as an iso ? 🤔
… Le 8 août 2022 à 19:06, Ville Laustela ***@***.***> a écrit :
I tried to attach the Myst.toast_.sit from https://macintoshgarden.org/games/myst as SCSI ID6. On my MacOS8 machine, the System Profiler can see a volume called Myst, but it's not mounting.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
-
Is this image a multi-session one ? (Joliet/iso+hfs)
If yes, maybe it is a clue to check ?
… Le 9 août 2022 à 17:28, Ville Laustela ***@***.***> a écrit :
Ok, I tried the ztto#1 ISO as well, but still no dice. I named it as CD60-Myst.iso. Using Transoft SCSI Director, I can see the CD device (Bluescsi cd-rom cdu-55s); the device information shows it as removable, size: 524 MB, Partitions N/A, Map status: Major problems. Attempting to mount it in SCSI director gives no erros but it doesn't appear on desktop.
BlueSCSI's log shows it deceted the image as follows:
CD60-Myst.iso CDROM / 551219200bytes / 538300KiB / 525MiB MODE2:0 BlockSize:2048
HOWEVER; a Mac OS 8.1 ISO worked straight away, so perhaps there is some issue with the Myst images?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.
|
Beta Was this translation helpful? Give feedback.
-
This is a beta release of optical support for BlueSCSI based on #130 by @mynameistroy
You can now create SCSI optical drives with
.iso
,.bin
,.toast
, and other raw optical formats.BlueSCSI will try to determine the correct block size for optical, and default to 2048 if none can be determined.
Reporting Success, Issues, and Questions in beta
If you have Success, Issues, and Questions please use the linked discussion below.
If you have technical feedback please report that in the Pull Request.
Usage:
Follows the same naming conventions as Hard Disks, except using
CD
CD30_2048-MacOS8.6.iso
- SCSI ID 3, LUN 0, 2048 sector size.Remember file names must be less than 32 characters.
Bootable Images
Some images created do not have the proper bits to be detected as bootable on a Mac. We are compiling of known good images here https://github.com/erichelgeson/BlueSCSI/wiki/CD-Image-Support
Known behaviors
Eject currently does nothing, we have some interesting plans around CD switching in the works.
If an image file has the read only attribute checked it is currently skipped (some CD images have this checked) - will be fixed in next beta.
Flashing
USB Boot loader
If you have the USB Boot loader you can flash any of the
-USB
firmware to your devices using this branch of the BlueSCSI-Updater or QMK Toolbox (generic DFU util for windows/mac)ST-Link
If you do not have a USB bootloader you can flash via ST-Link v2.
This discussion was created from the release Optical Beta.
Beta Was this translation helpful? Give feedback.
All reactions