forked from brunolalb/yawk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
65 lines (54 loc) · 1.87 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
APP_FOLDER="/mnt/onboard/.apps/yawk/"
INIT_SCRIPT_LOCAL="$APP_FOLDER/utils/init_script"
INIT_SCRIPT_REMOTE="/etc/init.d/yawk"
if [ ! -d $APP_FOLDER ]; then
echo "Please move the application to the correct folder: $APP_FOLDER"
exit -1
fi
if [ ! -e "$APP_FOLDER/yawk.py" ]; then
echo "Please move the application to the correct folder: $APP_FOLDER"
exit -1
fi
cd $APP_FOLDER
# first, check if the config.ini exists
if [ ! -e "config.ini" ]; then
# let's create it
correct='n'
while [ $correct != 'y' ]; do
read -p "Enter your API key: " api
read -p "Enter your city\'s ID: " city
echo
echo "Your API key is '$api'"
echo "Your city ID is '$city'"
read -p "Correct? [yn] " correct
done
echo "[yawk]" > config.ini
echo "key=$api" >> config.ini
echo "city=$city" >> config.ini
fi
# copy the automatic initializer
cp $INIT_SCRIPT_LOCAL $INIT_SCRIPT_REMOTE
chmod a+x $INIT_SCRIPT_REMOTE
# check if inittab already contains the yawk command
if grep -q "yawk" /etc/inittab; then
# delete the line containing the yawk command
sed -i '/yawk/d' /etc/inittab
fi
# add the command to start the yawk
echo "::sysinit:/etc/init.d/yawk" >> /etc/inittab
# check if the wifi is already set to autoscan
if grep -q "autoscan" /etc/wpa_supplicant/wpa_supplicant.conf.template; then
# delete the line containing te autoscan config
sed -i '/autoscan/d' /etc/wpa_supplicant/wpa_supplicant.conf.template
fi
# add the autoscan back
echo "autoscan=exponential:3:60" >> /etc/wpa_supplicant/wpa_supplicant.conf.template
# add the option to not kill the wifi
echo >> "/mnt/onboard/.kobo/Kobo/Kobo eReader.conf"
echo "[DeveloperSettings]" >> "/mnt/onboard/.kobo/Kobo/Kobo eReader.conf"
echo "ForceWifiOn=true" >> "/mnt/onboard/.kobo/Kobo/Kobo eReader.conf"
echo
echo "All Good! The eReader will restart now..."
sleep 5
reboot