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
Currently, a debugging session starts with symbols unmapped to addresses. This limits ease of debugging and operations like b some_func are not available.
Typically, this is solved by finding the symbol offsets from an active kernel module and then loading a symbol file like:
Currently, a debugging session starts with symbols unmapped to addresses. This limits ease of debugging and operations like
b some_func
are not available.Typically, this is solved by finding the symbol offsets from an active kernel module and then loading a symbol file like:
Or alternatively using
/proc/kallsyms
.A workaround could be made if #71 were available because a kernel module could be easily uploaded and the rest orchestrated.
The text was updated successfully, but these errors were encountered: