You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/koreader.sh

46 lines
1.1 KiB
Bash

#!/bin/sh
export LC_ALL="en_US.UTF-8"
PROC_KEYPAD="/proc/keypad"
PROC_FIVEWAY="/proc/fiveway"
test -e $PROC_KEYPAD && echo unlock > $PROC_KEYPAD
test -e $PROC_FIVEWAY && echo unlock > $PROC_FIVEWAY
# we're always starting from our working directory
cd /mnt/us/koreader/
# export trained OCR data directory
export TESSDATA_PREFIX="data"
# bind-mount system fonts
if ! grep /mnt/us/koreader/fonts/host /proc/mounts; then
mount -o bind /usr/java/lib/fonts /mnt/us/koreader/fonts/host
fi
# check if we are supposed to shut down the Amazon framework
if test "$1" == "--framework_stop"; then
shift 1
/etc/init.d/framework stop
fi
# dismiss chrome bar
lipc-set-prop com.lab126.pillow disableEnablePillow disable
# stop cvm
#killall -stop cvm
# finally call reader
./reader.lua "$1" 2> crash.log
# unmount system fonts
if grep /mnt/us/koreader/fonts/host /proc/mounts; then
umount /mnt/us/koreader/fonts/host
fi
# always try to continue cvm
killall -cont cvm || /etc/init.d/framework start
# display chrome bar
lipc-set-prop com.lab126.pillow disableEnablePillow enable