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
Describe the bug
in scripts/elf_helper.py, function debug_die is used to dump DIE information and function debug is for common information, the step 4 of function find_kobjects is checking all the kernel objects instead of DIE which has already been checked in step 3, so we should use debug function to do the dump, debug_die will cause unforeseen errors.
The text was updated successfully, but these errors were encountered:
In step 4 of find_kobjects, use func debug instead of debug_die
to dump debug info to avoid dump wrong info.
Fixes: zephyrproject-rtos#25519.
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
In step 4 of find_kobjects, use func debug instead of debug_die
to dump debug info to avoid dump wrong info.
Fixes: #25519.
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Describe the bug
in scripts/elf_helper.py, function debug_die is used to dump DIE information and function debug is for common information, the step 4 of function find_kobjects is checking all the kernel objects instead of DIE which has already been checked in step 3, so we should use debug function to do the dump, debug_die will cause unforeseen errors.
The text was updated successfully, but these errors were encountered: