mirror of
https://github.com/koreader/koreader
synced 2024-11-18 03:25:46 +00:00
17 lines
502 B
Bash
Executable File
17 lines
502 B
Bash
Executable File
#!/bin/sh
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
echo unlock > /proc/keypad
|
|
echo unlock > /proc/fiveway
|
|
|
|
cd /mnt/us/kindlepdfviewer/
|
|
|
|
grep /mnt/us/kindlepdfviewer/fonts/host /proc/mounts || mount -o bind /usr/java/lib/fonts /mnt/us/kindlepdfviewer/fonts/host
|
|
|
|
./reader.lua "$1" 2> /mnt/us/kindlepdfviewer/crash.log || cat /mnt/us/kindlepdfviewer/crash.log
|
|
|
|
grep /mnt/us/kindlepdfviewer/fonts/host /proc/mounts && umount /mnt/us/kindlepdfviewer/fonts/host
|
|
|
|
killall -cont cvm
|
|
echo 1 > /proc/eink_fb/update_display
|