remarkable: fix fbdepth use in startup script (#6658)

The reMarkable version of fbdepth doesn't support the -1 rotation so
this was actually not setting the rotation at all. I didn't notice this
as I was always launching koreader from xochitl so the rotation was
already set correctly.
reviewable/pr6660/r1
Thomas Spurden 4 years ago committed by GitHub
parent 99045b4311
commit 0eaae807ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -108,7 +108,7 @@ ko_do_fbdepth() {
# Swap to 8bpp if things look sane
if [ -n "${ORIG_FB_BPP}" ]; then
echo "Switching fb bitdepth to 8bpp & rotation to Portrait" >>crash.log 2>&1
./fbdepth -d 8 -r -1 >>crash.log 2>&1
./fbdepth -d 8 -r 1 >>crash.log 2>&1
fi
fi
}

Loading…
Cancel
Save