Facing kernel panic on accessing "Offline" attribute of SMB protocol in our custom kext. How to debug these kernel panics on MAC OS Catalina.
The debugging kernel extension steps are not supported for Catalina because of Read-only file system. Also kext with IOKit.framework does not load on MAC OS 10.14.x with error
There is no "/Volumes/KernelDebugKit/mach_kernel" as per the documentation https://developer.apple.com/library/archive/documentation/Darwin/Conceptual/KEXTConcept/KEXTConceptDebugger/debug_tutorial.html#//apple_ref/doc/uid/20002367-CHDIHFDI,
gdb -arch i386 /Volumes/KernelDebugKit/mach_kernel
Unable to create PanicDumps directory to collect panic through kdump daemon under '/' volume, as Catalina is read-only file system
Ref: https://developer.apple.com/library/archive/technotes/tn2004/tn2118.html
Unable to load kexts with IOKit framework references with errors on MAC OS 10.14 to debug:
Is there any documentation that specifies how to debug kernel panic on mac os catalina with read-only file system set up?
Note: Disabling SIP also does not work.
Thanks in advance.