
Did you try to open a file?tried using the GUI tool but to no avail, the program doesn't recognize my bootrom hardware which is weird. what linux live CD should i use to get the flashrom program?
cbif and type brom or ROM . These can be a 1MiB firmware dump. You should get a firmware dump before and after modifying so you can compare before and after.cbif:bbce. These are 128 bytes. Maybe 256 byte? Firmware updaters have config blocks for many models (128 bytes per model - the second 128 bytes is unique to your machine).TEXT:MPS . The scripts begin with Open Firmware code and contain compressed versions of the firmware and config blocks for each model.APPL, I don't know what this one is.cbif Config Block image fileTEXT Motorola S-Records Config Block fileAPPL Self-Updating Config Block image fileAllows editing of the BootROM Config Block on Core99-based machines. To use, simply edit the Config Block values, hit enter to record the change, and then click Update. BootROM image files and Config Block image files can be dropped onto either the application icon or the main window to import their contents.
Engineering:
Bob Bradley
Special Thanks:
Ernie Beernik, Derrick Carty, Chuck Childs, John Hall, Ron Hochsprung,
Nick King, Al Kossow, Mike Larson, Dave Martin, Stuart Russell, Dave Wong
Config Block Editor has ROM flashing capability?i was able to edit the ROM directly using the program, i just had to hold power and command while turning it on until i hear a long beep. i was also able to get everything working as i stated earlier.
yes it edits the ROM directly by only updating the config block itself. its very easy to use.Config Block Editor has ROM flashing capability?
there is GUI tool config block editor, that leaked recently, for editing this sort of stuff, but I have not personally messed with it much other then finding it in the CD and poking at it a bit
![]()
Apple EVT CD MacOS "Bandit 18 (1.2f4)" : Free Download, Borrow, and Streaming : Internet Archive
This CD was found in an Apple iBook G3 EVT laptop. The disk is labeled Bandit 18 (1.2f4). It appears to contain an installer for MacOS 9.2 along with several...archive.org
There's a .cue file which says that the corresponding binary file is a single track CD with block size 2352. Just convert it to 2048 byte sized blocks.I must be seriously out of date. How the heck does one download a useful disk image from that archive? I got the 700+ MB file just called "Bandit" but it doesn't seem to have any usable file type, such as ISO Image or such.
00ff ffff ffff ffff ffff ff00 0002 0001 and ends with 2352-16-2048=288 byte footer.# convert the CD
lang=C perl -0777 -pe 's/.{16}(.{2048}).{288}/$1/msg' "Bandit 18" > "Bandit 18.dmg"
# mount the dmg
hdiutil attach "Bandit 18.dmg"
/dev/disk16 Apple_partition_scheme
/dev/disk16s1 Apple_partition_map
/dev/disk16s2 Apple_Driver43
/dev/disk16s3 Apple_Driver43_CD
/dev/disk16s5 Apple_Driver_ATAPI
/dev/disk16s6 Apple_Driver_ATAPI
/dev/disk16s7 Apple_Patches
/dev/disk16s9 Apple_HFS /Volumes/Untitled
# view the filesystem in the Finder (FuseHFS uses "Untitled" for the mount point name instead of the name of the volume which is "Bandit 18")
open /Volumes/Untitled
i renamed the extensionless file to .bin and used the .cue to burn it to a CDThere's a .cue file which says that the corresponding binary file is a single track CD with block size 2352. Just convert it to 2048 byte sized blocks.
Each CD blocks begins with a 16 byte header (like this:00ff ffff ffff ffff ffff ff00 0002 0001and ends with 2352-16-2048=288 byte footer.
I'm using macOS Monterey with FuseHFS to mount the HFS partition.
Code:# convert the CD lang=C perl -0777 -pe 's/.{16}(.{2048}).{288}/$1/msg' "Bandit 18" > "Bandit 18.dmg" # mount the dmg hdiutil attach "Bandit 18.dmg" /dev/disk16 Apple_partition_scheme /dev/disk16s1 Apple_partition_map /dev/disk16s2 Apple_Driver43 /dev/disk16s3 Apple_Driver43_CD /dev/disk16s5 Apple_Driver_ATAPI /dev/disk16s6 Apple_Driver_ATAPI /dev/disk16s7 Apple_Patches /dev/disk16s9 Apple_HFS /Volumes/Untitled # view the filesystem in the Finder (FuseHFS uses "Untitled" for the mount point name instead of the name of the volume which is "Bandit 18") open /Volumes/Untitled