rM: Switch to plain dumb sleep during the crash screen (#7038)

The seven billion different input devices on an rM make this trickier in practice.
Plus, rM1 vs. rM2 platform differences...
reviewable/pr7042/r1
NiLuJe 3 years ago committed by GitHub
parent 8e3a117c68
commit 7dd94b348f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -186,8 +186,8 @@ while [ ${RETURN_VALUE} -ne 0 ]; do
# With a little notice at the top of the screen, on a big gray screen of death ;). # With a little notice at the top of the screen, on a big gray screen of death ;).
./fbink -q -b -c -B GRAY9 -m -y 1 "Don't Panic! (Crash n°${CRASH_COUNT} -> ${RETURN_VALUE})" ./fbink -q -b -c -B GRAY9 -m -y 1 "Don't Panic! (Crash n°${CRASH_COUNT} -> ${RETURN_VALUE})"
if [ ${CRASH_COUNT} -eq 1 ]; then if [ ${CRASH_COUNT} -eq 1 ]; then
# Warn that we're waiting on a tap to continue... # Warn that we're sleeping for a bit...
./fbink -q -b -O -m -y 2 "Tap the screen to continue." ./fbink -q -b -O -m -y 2 "KOReader will restart in 15 sec."
fi fi
# U+1F4A3, the hard way, because we can't use \u or \U escape sequences... # U+1F4A3, the hard way, because we can't use \u or \U escape sequences...
# shellcheck disable=SC2039 # shellcheck disable=SC2039
@ -212,10 +212,7 @@ while [ ${RETURN_VALUE} -ne 0 ]; do
# Pause a bit if it's the first crash in a while, so that it actually has a chance of getting noticed ;). # Pause a bit if it's the first crash in a while, so that it actually has a chance of getting noticed ;).
if [ ${CRASH_COUNT} -eq 1 ]; then if [ ${CRASH_COUNT} -eq 1 ]; then
# NOTE: We don't actually care about what read read, we're just using it as a fancy sleep ;). sleep 15
# i.e., we pause either until the 15s timeout, or until the user touches the screen.
# shellcheck disable=SC2039
read -r -t 15 </dev/input/event1
fi fi
# Cycle the last crash timestamp # Cycle the last crash timestamp
CRASH_PREV_TS=${CRASH_TS} CRASH_PREV_TS=${CRASH_TS}

Loading…
Cancel
Save