forked from phoenhix/CHIP-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_ubuntu1404.sh
executable file
·58 lines (47 loc) · 1.46 KB
/
setup_ubuntu1404.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
#!/bin/bash
echo -e "\n Setting up environment in Ubuntu 14.04"
sudo apt-get -y update
sudo apt-get -y install \
build-essential \
git \
mercurial \
cmake \
unzip \
device-tree-compiler \
libncurses-dev \
cu \
linux-image-extra-virtual \
u-boot-tools \
android-tools-fastboot \
python-dev \
python-pip \
libusb-1.0-0-dev \
pkg-config
if uname -a |grep -q 64;
then
echo -e "\n Installing 32bit compatibility libraries"
sudo apt-get -y install libc6-i386 lib32stdc++6 lib32z1
fi
echo -e "\n Adding current user to dialout group"
sudo usermod -a -G dialout $(logname)
echo -e "\n Adding current user to plugdev group"
sudo usermod -a -G plugdev $(logname)
echo -e "\n Adding udev rule for Allwinner device"
echo -e 'SUBSYSTEM=="usb", ATTRS{idVendor}=="1f3a", ATTRS{idProduct}=="efe8", GROUP="plugdev", MODE="0660" SYMLINK+="usb-chip"
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="1010", GROUP="plugdev", MODE="0660" SYMLINK+="usb-chip-fastboot"
' | sudo tee /etc/udev/rules.d/99-allwinner.rules
sudo udevadm control --reload-rules
echo -e "\n Installing sunxi-tools"
git clone http://github.com/linux-sunxi/sunxi-tools
pushd sunxi-tools
make
if [[ -L /usr/local/bin/fel ]]; then
sudo rm /usr/local/bin/fel
fi
sudo ln -s $PWD/fel /usr/local/bin/fel
popd
cd /home/vagrant/
echo -e "\n Installing CHIP-tools"
git clone http://github.com/NextThingCo/CHIP-tools
echo -e "\n Installing CHIP-buildroot"
git clone http://github.com/NextThingCo/CHIP-buildroot