Skip to content

Commit

Permalink
l4t: Disable kernel panic dumping for now
Browse files Browse the repository at this point in the history
  • Loading branch information
CTCaer committed Jul 19, 2020
1 parent 2b7722d commit 6c887c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bootloader/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,8 @@ static void _show_errors()
if (*excp_enabled == EXCP_MAGIC)
h_cfg.errors |= ERR_EXCEPT_ENB;

if (PMC(APBDEV_PMC_SCRATCH37) & PMC_SCRATCH37_KERNEL_PANIC_FLAG)
//! FIXME: Find a better way to identify if that scratch has proper data.
if (0 && PMC(APBDEV_PMC_SCRATCH37) & PMC_SCRATCH37_KERNEL_PANIC_FLAG)
{
// Set error and clear flag.
h_cfg.errors |= ERR_L4T_KERNEL;
Expand Down

0 comments on commit 6c887c1

Please sign in to comment.