-
Notifications
You must be signed in to change notification settings - Fork 75
/
install-bbb-dev.sh
114 lines (91 loc) · 2.65 KB
/
install-bbb-dev.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/sh
# BeagleBone Black Debian Jessie Installer
# Manual steps
#
# 1. ~/.aws/credentials
# 2. dhclient wlan0 > /etc/rc.local
# 3. configure vcan0, can0, wlan0
# 4. /etc/modules (vcan0)
# 5. fstab: /dev/mmcblk0p1 /sdcard vfat defaults 0 0
if [ "`id -u`" != "0" ];then
echo "You must be root to run the installer"
exit 1
fi
apt-get update
apt-get remove -y lightdm xserver-* apache2* chromium-* lxqt-* x11-* xauth xbitmaps xfonts-* --purge
apt-get install -y cmake libssl-dev libjansson-dev libcurl4-openssl-dev can-utils ruby-dev
apt-get autoremove -y
gem install bundler
MYUID=ecutune
MYGID=ecutools
LOGDIR=/var/log/ecutools
CERTDIR=/etc/ecutools/certs
CACHEDIR=/var/ecutools/cache
SDCARD=/sdcard
groupadd $MYGID
useradd -G $MYGID -r $MYUID -s /bin/false
mkdir $LOGDIR
chown root.$MYGID $LOGDIR
chmod 775 $LOGDIR
mkdir -p $CERTDIR
chown -R root.$MYGID $CERTDIR
chmod 775 $CERTDIR
chmod 660 $CERTDIR/*
mkdir -p $CACHEDIR
chown -R root.$MYGID $CACHEDIR
chmod 775 $CACHEDIR
su debian -c "git clone https://github.com/jeremyhahn/ecutools.git"
cd ecutools
su debian -c "./autogen.sh"
su debian -c "./configure"
su debian -c "make mbedtls"
su debian -c "make bundle-install"
su debian -c "make devenv"
make install
mkdir $SDCARD
chown root.$MYGID $SDCARD
chmod 755 $SDCARD
mount /dev/mmcblk0p1 $SDCARD
echo '#!/bin/sh
### BEGIN INIT INFO
# Provides: ecutuned
# Required-Start: $local_fs $remote_fs $network $syslog $named
# Required-Stop: $local_fs $remote_fs $network $syslog $named
# Default-Start: 3 5
# Default-Stop: 0 1 6
# Short-Description: starts the ecutuned service
# Description: starts ecutuned using start-stop-daemon
### END INIT INFO
MYUID=ecutune
MYGID=ecutools
NAME=ecutuned
PIDFILE=/var/run/$NAME.pid
LOGDIR=/sdcard
DAEMON=/usr/local/bin/ecutuned
DAEMON_OPTS="-l $LOGDIR -d"
export PATH="${PATH:+$PATH:}/usr/sbin:/sbin"
case "$1" in
start)
echo -n "Starting daemon: "$NAME
start-stop-daemon --chuid $MYUID:$MYGID --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS
;;
stop)
echo -n "Stopping daemon: "$NAME
pkill ecutuned
#start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
;;
restart)
echo -n "Restarting daemon: "$NAME
#start-stop-daemon --stop --quiet --oknodo --retry 30 --pidfile $PIDFILE
pkill ecutuned
start-stop-daemon --chuid $MYUID:$MYGID --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS
;;
*)
echo "Usage: "$1" {start|stop|restart}"
exit 1
esac
exit 0
' > /etc/init.d/ecutuned
chmod 755 /etc/init.d/ecutuned
update-rc.d ecutuned defaults
/etc/init.d/ecutuned start