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.
This commit is contained in:
Thomas Spurden
2020-09-15 20:05:23 +01:00
committed by GitHub
parent 99045b4311
commit 0eaae807ce

View File

@@ -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
}