2013-07-10 07:10:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
|
2014-08-01 04:36:32 +00:00
|
|
|
# working directory of koreader
|
|
|
|
KOREADER_DIR=/mnt/onboard/.kobo/koreader
|
|
|
|
|
|
|
|
# update to new version from OTA directory
|
2014-10-14 05:04:49 +00:00
|
|
|
NEWUPDATE="${KOREADER_DIR}/ota/koreader.updated.tar"
|
|
|
|
INSTALLED="${KOREADER_DIR}/ota/koreader.installed.tar"
|
2014-08-01 04:36:32 +00:00
|
|
|
if [ -f $NEWUPDATE ]; then
|
|
|
|
# TODO: any graphic indication for the updating progress?
|
2014-10-14 05:04:49 +00:00
|
|
|
cd /mnt/onboard/.kobo && tar xf $NEWUPDATE && mv $NEWUPDATE $INSTALLED
|
2014-08-01 04:36:32 +00:00
|
|
|
fi
|
|
|
|
|
2013-07-10 07:10:38 +00:00
|
|
|
# we're always starting from our working directory
|
2014-08-01 04:36:32 +00:00
|
|
|
cd $KOREADER_DIR
|
2013-07-10 07:10:38 +00:00
|
|
|
|
|
|
|
# export trained OCR data directory
|
|
|
|
export TESSDATA_PREFIX="data"
|
|
|
|
|
|
|
|
# export dict directory
|
|
|
|
export STARDICT_DATA_DIR="data/dict"
|
|
|
|
|
2015-01-27 18:17:54 +00:00
|
|
|
# export external font directory
|
|
|
|
export EXT_FONT_DIR="/mnt/onboard/fonts"
|
2015-01-25 08:52:01 +00:00
|
|
|
|
2014-08-18 23:48:31 +00:00
|
|
|
# fast and dirty way of check if we are called from nickel
|
|
|
|
# through fmon, or from another launcher (KSM or advboot)
|
|
|
|
from_nickel=`pidof nickel | wc -c`
|
2014-06-25 13:31:42 +00:00
|
|
|
|
2014-08-18 23:48:31 +00:00
|
|
|
if [ $from_nickel -ne 0 ]; then
|
|
|
|
# stop kobo software because is running
|
|
|
|
killall nickel hindenburg fmon 2>/dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
# fallback for old fmon (and advboot) users
|
|
|
|
if [ `echo $@ | wc -c` -eq 1 ]; then
|
|
|
|
args="/mnt/onboard"
|
|
|
|
else
|
|
|
|
args=$@
|
|
|
|
fi
|
2013-07-10 07:10:38 +00:00
|
|
|
|
2015-02-09 15:13:07 +00:00
|
|
|
# check whether PLATFORM has a value assigned by rcS
|
|
|
|
# PLATFORM is used in koreader for the path to the WiFi drivers
|
|
|
|
if [ -n "$PLATFORM" ]; then
|
|
|
|
PLATFORM=freescale
|
|
|
|
if [ `dd if=/dev/mmcblk0 bs=512 skip=1024 count=1 | grep -c "HW CONFIG"` == 1 ]; then
|
|
|
|
CPU=`ntx_hwconfig -s -p /dev/mmcblk0 CPU`
|
|
|
|
PLATFORM=$CPU-ntx
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $PLATFORM == freescale ]; then
|
|
|
|
if [ ! -s /lib/firmware/imx/epdc_E60_V220.fw ]; then
|
|
|
|
mkdir -p /lib/firmware/imx
|
|
|
|
dd if=/dev/mmcblk0 bs=512K skip=10 count=1 | zcat > /lib/firmware/imx/epdc_E60_V220.fw
|
|
|
|
sync
|
|
|
|
fi
|
|
|
|
elif [ ! -e /etc/u-boot/$PLATFORM/u-boot.mmc ]; then
|
|
|
|
PLATFORM=ntx508
|
|
|
|
fi
|
2015-02-09 15:19:27 +00:00
|
|
|
export PLATFORM
|
2015-02-09 15:13:07 +00:00
|
|
|
fi
|
|
|
|
# end of value check of PLATFORM
|
|
|
|
|
2014-08-18 23:48:31 +00:00
|
|
|
./reader.lua $args 2> crash.log
|
|
|
|
|
|
|
|
if [ $from_nickel -ne 0 ]; then
|
|
|
|
# start kobo software because was running before koreader
|
|
|
|
./nickel.sh
|
|
|
|
else
|
|
|
|
# if we were called from advboot then we must reboot to go to the menu
|
|
|
|
if [ -d /mnt/onboard/.kobo/advboot ]; then
|
|
|
|
reboot
|
|
|
|
fi
|
|
|
|
fi
|