A C128 PRG which contains the CP/M boot program would be cool. And you wouldn't need to write anything special for Kerberos for it, because I did already all the tricks for starting a C128 PRG. I guess you could test and debug it in VICE with a CP/M which uses a REU for easier development, and then just change the external RAM access.
A PRG can only be 64k max. But there are two areas reserved for two virtual cartridge disks in the Kerberos flash, from $10000 to $6ffff, and the Kerberos App already has the ability to upload D64 images to these areas ("Disk tools" tab). Don't know, if this is compatible with CP/M disks, but if it works, maybe you could use this as one two sided ROM system disk, or if you don't mind some more work, as a virtual writable flash disk, as I started already very roughly for the C64 mode. I know, my developer documentation could be better for this, but at least in C64 mode you can just enable the ROM emulation at $8000 with "CART_CONTROL = CART_CONTROL_EXROM_LOW | CART_CONTROL_GAME_HIGH;" and then selecting which 8k area of the flash you will see with the FLASH_ADDRESS_EXTENSION register (see main_menu.c). This should make the ROM disk implementation easy.