You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: troubleshooting/kernel-debugging.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,8 +56,8 @@ Now lets go over what each arg does:
56
56
***keepsyms=1**
57
57
* Ensures symbols are kept during kernel panics, which are greatly helpful for troubleshooting
58
58
***debug=0x12a**
59
-
* Combination of `DB_KPRT`(0x8), `DB_KDP_BP_DIS`(0x32), `DB_KDP_GETC_ENA(0x200)`
60
-
* A full list of values can be found here: [debug.h](https://github.com/apple/darwin-xnu/blob/master/osfmk/kern/debug.h#L419L447)
59
+
* Combination of `DB_PRT` (0x2), `DB_KPRT`(0x8), `DB_SLOG` (0x20), and `DB_LOG_PI_SCRN` (0x100)
60
+
* A full list of values for the latest version of XNU can be found here: [debug.h](https://github.com/apple-oss-distributions/xnu/blob/master/osfmk/kern/debug.h)
61
61
***msgbuf=1048576**
62
62
* Sets the kernel's message buffer size, this helps with getting proper logs during boot
63
63
* 1048576 is 1MB(/1024^2), can be larger if required
0 commit comments