mirror of
https://github.com/elliotnunn/NetBoot.git
synced 2025-04-19 13:40:08 +00:00
The floppy enables network boot in PRAM. This allows us to remove most of the ROM patches.
8 lines
261 B
Bash
Executable File
8 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
|
|
|
make BootstrapFloppy.dsk
|
|
|
|
./NetBoot.py & cp xo.rom edit.rom && ./xo-rom-enable-netboot.py edit.rom && Mini\ vMac\ Classic.app/Contents/MacOS/minivmac edit.rom BootstrapFloppy.dsk && kill %1
|