Merge "init.qti.debug-kona: Update the command to enable cpu core hang detect"

This commit is contained in:
qctecmdr 2019-06-19 23:07:20 -07:00 committed by Gerrit - the friendly Code Review server
commit c90861ba76
1 changed files with 4 additions and 3 deletions

View File

@ -1232,9 +1232,10 @@ enable_kona_core_hang_config()
echo 0xffffffff > $CORE_PATH_SILVER/threshold
echo 0xffffffff > $CORE_PATH_GOLD/threshold
#To the enable core hang detection
echo 0x1 > $CORE_PATH_SILVER/enable
echo 0x1 > $CORE_PATH_GOLD/enable
#To the enable core hang detection.
#It's a boolean variable. DO NOT USE HEX values to enable/disable.
echo 1 > $CORE_PATH_SILVER/enable
echo 1 > $CORE_PATH_GOLD/enable
}
ftrace_disable=`getprop persist.debug.ftrace_events_disable`