-
Notifications
You must be signed in to change notification settings - Fork 4
/
arduino-linux-setup-02.sh
179 lines (138 loc) · 3.68 KB
/
arduino-linux-setup-02.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#! /bin/bash
# if [[ $EUID != 0 ]] ; then
# echo This must be run as root!
# exit 1
# fi
sudocheck () {
#
# Check SUDO privileges
#
if [ $SUDOASKED = n ]
then
echo ""
echo SUDO privileges are required
echo -n Do you have SUDO privileges'?'
echo ""
read ans
case $ans in
y|Y|YES|yes|Yes)
echo Continuing with script
SUDOASKED=y
sudo grep timestamp_timeout /etc/sudoers >tmp$$
timeout=`cat tmp$$|awk '/./ {print $4}'`
rm -f tmp$$
if [ "@@" = "@$timeout@" ]
then
sudo cp /etc/sudoers tmp$$
sudo chown $USER tmp$$
sudo chmod 644 tmp$$
echo "Defaults timestamp_timeout = 90" >>tmp$$
sudo cp tmp$$ /etc/sudoers
sudo chown root /etc/sudoers
sudo chmod 440 /etc/sudoers
elif [ "$timeout" -lt 90 ]
then
echo You need to have a timestamp_timout in /etc/sudoers of 90 or more
echo Please ensure that your timestamp_timeout is 90 or more
exit
fi
;;
*)
echo Exiting. Please ensure that you have SUDO privileges on this system!
exit 0
;;
esac
fi
}
refreshudev () {
echo "Restarting udev"
sudo service udev restart
sudo udevadm control --reload-rules
sudo udevadm trigger
}
groupsfunc () {
echo ""
echo "******* Add User to dialout,tty, uucp, plugdev groups *******"
echo ""
sudo usermod -a -G tty $1
sudo usermod -a -G dialout $1
sudo usermod -a -G uucp $1
sudo groupadd plugdev
sudo usermod -a -G plugdev $1
}
acmrules () {
echo ""
echo "Setting serial port rules"
echo ""
user
cat <<EOF
"KERNEL="ttyUSB[0-9]*", TAG+="udev-acl", TAG+="uaccess", OWNER="$1"
"KERNEL="ttyACM[0-9]*", TAG+="udev-acl", TAG+="uaccess", OWNER="$1"
EOF
}
openocdrules () {
echo ""
echo "Adding Arduino M0/M0 Pro Rules"
echo ""
cat <<EOF
ACTION!="add|change", GOTO="openocd_rules_end"
SUBSYSTEM!="usb|tty|hidraw", GOTO="openocd_rules_end"
#Please keep this list sorted by VID:PID
#CMSIS-DAP compatible adapters
ATTRS{product}=="*CMSIS-DAP*", MODE="664", GROUP="plugdev"
LABEL="openocd_rules_end"
EOF
}
avrisprules () {
cat <<EOF
SUBSYSTEM!="usb_device", ACTION!="add", GOTO="avrisp_end"
# Atmel Corp. JTAG ICE mkII
ATTR{idVendor}=="03eb", ATTRS{idProduct}=="2103", MODE="660", GROUP="dialout"
# Atmel Corp. AVRISP mkII
ATTR{idVendor}=="03eb", ATTRS{idProduct}=="2104", MODE="660", GROUP="dialout"
# Atmel Corp. Dragon
ATTR{idVendor}=="03eb", ATTRS{idProduct}=="2107", MODE="660", GROUP="dialout"
LABEL="avrisp_end"
EOF
}
removemm () {
echo ""
echo "******* Removing modem manager *******"
echo ""
if [ -f /etc/lsb-release -a ! -f /etc/SuSE-release ] || [ -f /etc/debian_version ] || [ -f /etc/linuxmint/info ]
then
#Only for Ubuntu/Mint/Debian
sudo apt-get remove modemmanager
elif [ -f /etc/SuSE-release ]
then
#Only for Suse
sudo zypper remove modemmanager
elif [ -f /etc/fedora-release ] || [ -f /etc/redhat-release ]
then
#Only for Red Hat/Fedora/CentOS
sudo yum remove modemmanager
else
echo ""
echo "Your system is not supported, please take care of it with your package manager"
echo ""
fi
}
if [ "$1" = "" ]
then
echo ""
echo "Run the script with command sudo ./ArduinoIDE_Installation_script.sh \$USER"
echo ""
else
[ `whoami` != $1 ] && echo "The user name is not the right one, please double-check !" && exit 0
SUDOASKED=n
sudocheck
groupsfunc $1
removemm
acmrules $1 > /etc/udev/rules.d/90-extraacl.rules
openocdrules > /etc/udev/rules.d/98-openocd.rules
avrisprules > /etc/udev/rules.d/avrisp.rules
refreshudev
echo ""
echo "*********** Please Reboot your system ************"
echo ""
fi