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
|
2015-04-26 18:46:30 +00:00
|
|
|
KOREADER_DIR="${0%/*}"
|
2014-08-01 04:36:32 +00:00
|
|
|
|
|
|
|
# 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"
|
2015-04-26 18:46:30 +00:00
|
|
|
if [ -f "${NEWUPDATE}" ] ; then
|
|
|
|
# TODO: any graphic indication for the updating progress?
|
|
|
|
cd "${KOREADER_DIR%/*}" && 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
|
2015-04-26 18:46:30 +00:00
|
|
|
cd "${KOREADER_DIR}"
|
2013-07-10 07:10:38 +00:00
|
|
|
|
2015-04-13 02:54:28 +00:00
|
|
|
# load our own shared libraries if possible
|
2015-04-26 18:46:30 +00:00
|
|
|
export LD_LIBRARY_PATH="${KOREADER_DIR}/libs:${LD_LIBRARY_PATH}"
|
2015-04-13 02:54:28 +00:00
|
|
|
|
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)
|
2015-04-26 18:46:30 +00:00
|
|
|
from_nickel="false"
|
|
|
|
if pkill -0 nickel ; then
|
|
|
|
from_nickel="true"
|
|
|
|
fi
|
2014-06-25 13:31:42 +00:00
|
|
|
|
2015-04-26 18:46:30 +00:00
|
|
|
if [ "${from_nickel}" == "true" ] ; then
|
2015-04-26 23:21:54 +00:00
|
|
|
# Siphon a few things from nickel's env...
|
|
|
|
eval "$(xargs -n 1 -0 < /proc/$(pidof nickel)/environ | grep -e DBUS_SESSION_BUS_ADDRESS -e WIFI_MODULE -e PLATFORM -e WIFI_MODULE_PATH -e INTERFACE -e PRODUCT 2>/dev/null)"
|
|
|
|
export DBUS_SESSION_BUS_ADDRESS WIFI_MODULE PLATFORM WIFI_MODULE_PATH INTERFACE PRODUCT
|
|
|
|
|
2015-04-26 21:42:59 +00:00
|
|
|
# flush disks, might help avoid trashing nickel's DB...
|
|
|
|
sync
|
|
|
|
# stop kobo software because it's running
|
2015-04-26 18:46:30 +00:00
|
|
|
killall nickel hindenburg fmon 2>/dev/null
|
2014-08-18 23:48:31 +00:00
|
|
|
fi
|
|
|
|
|
2015-04-26 18:46:30 +00:00
|
|
|
# fallback for old fmon (and advboot) users (-> if no args were passed to the sript, start the FM)
|
|
|
|
if [ "$#" -eq 0 ] ; then
|
|
|
|
args="/mnt/onboard"
|
2014-08-18 23:48:31 +00:00
|
|
|
else
|
2015-04-26 18:46:30 +00:00
|
|
|
args="$@"
|
2014-08-18 23:48:31 +00:00
|
|
|
fi
|
2013-07-10 07:10:38 +00:00
|
|
|
|
2015-04-26 23:21:54 +00:00
|
|
|
# check whether PLATFORM & PRODUCT have a value assigned by rcS
|
|
|
|
if [ ! -n "${PRODUCT}" ] ; then
|
|
|
|
PRODUCT="$(/bin/kobo_config.sh)"
|
|
|
|
[ "${PRODUCT}" != "trilogy" ] && PREFIX="${PRODUCT}-"
|
|
|
|
export PRODUCT
|
|
|
|
fi
|
|
|
|
|
2015-02-09 15:13:07 +00:00
|
|
|
# PLATFORM is used in koreader for the path to the WiFi drivers
|
2015-04-26 18:46:30 +00:00
|
|
|
if [ ! -n "${PLATFORM}" ] ; then
|
|
|
|
PLATFORM="freescale"
|
|
|
|
if dd if="/dev/mmcblk0" bs=512 skip=1024 count=1 | grep -q "HW CONFIG" ; then
|
|
|
|
CPU="$(ntx_hwconfig -s -p /dev/mmcblk0 CPU)"
|
|
|
|
PLATFORM="${CPU}-ntx"
|
|
|
|
fi
|
2015-02-09 15:13:07 +00:00
|
|
|
|
2015-04-26 18:46:30 +00:00
|
|
|
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
|
|
|
|
export PLATFORM
|
2015-02-09 15:13:07 +00:00
|
|
|
fi
|
|
|
|
# end of value check of PLATFORM
|
|
|
|
|
2015-04-26 18:46:30 +00:00
|
|
|
./reader.lua "${args}" 2> crash.log
|
2014-08-18 23:48:31 +00:00
|
|
|
|
2015-04-26 18:46:30 +00:00
|
|
|
if [ "${from_nickel}" == "true" ] ; then
|
2015-04-26 20:46:16 +00:00
|
|
|
# start kobo software because it was running before koreader
|
2015-04-26 23:59:50 +00:00
|
|
|
./nickel.sh &
|
2014-08-18 23:48:31 +00:00
|
|
|
else
|
2015-04-26 18:46:30 +00:00
|
|
|
# if we were called from advboot then we must reboot to go to the menu
|
2015-04-27 00:33:31 +00:00
|
|
|
# NOTE: This is actually achieved by checking if KSM is running:
|
|
|
|
# This might lead to false-positives if you use neither KSM nor advboot to launch KOReader *without nickel running*.
|
2015-04-28 19:07:25 +00:00
|
|
|
if ! pgrep -f ksmhome.sh > /dev/null 2>&1 ; then
|
2015-04-26 18:46:30 +00:00
|
|
|
reboot
|
|
|
|
fi
|
2014-08-18 23:48:31 +00:00
|
|
|
fi
|
2015-04-26 23:59:50 +00:00
|
|
|
|
|
|
|
return 0
|