First, you have to extract the console.device from the "AmigaOS ROM Update" file (installed by BoingBag2):
ExtractModule FROM "DEVS:AmigaOS ROM Update" Module 18 TO SYS:Devs/console.device.bakThen use the following command to patch it:
spatch -oSYS:Devs/console.device -pRAM:patch/console.pch SYS:Devs/console.device.bak(ExtractModule is part of
LoadModule proggie)
Then use the following command in your startup-sequence:
C:LoadModule DEVS:console.device NOREBOOTand don't forget to tell SetPatch to skip loading the module from "AmigaOS ROM Update" because the LoadModule already did it:
SetPatch SKIPROMMODULES console.device QUIETYou can use more modules with LoadModule, this is what I have in my startup-sequence:
C:LoadModule L:Ram-Handler L:Shell-Seg LIBS:icon.library LIBS:workbench.library LIBS:mathieeesingbas.library DEVS:console.device REVERSE NOREBOOT
SetPatch SKIPROMMODULES ram-handler,shell,console.device,scsi.device QUIET