do not use external unauthorised uncontrolled servers.
[dev-env-setup.git] / coriolis2-chroot
1 #!/bin/bash
2 if [ "$EUID" -ne 0 ]
3 then echo "Please run as root"
4 exit
5 fi
6 # Create coriolis chroot dir in /opt
7 mkdir -p /opt/chroot/coriolis
8 # Install debootstrap and schroot via apt
9 apt install -y debootstrap schroot
10 # Install debian/buster chroot using debootstrap
11 /usr/sbin/debootstrap buster /opt/chroot/coriolis \
12 http://ftp.uk.debian.org/debian
13 echo "coriolis2" > /opt/chroot/coriolis/etc/debian_chroot
14 # make coriolis2 profile
15 mkdir -p /etc/schroot/coriolis2
16 cp /etc/schroot/default/* /etc/schroot/coriolis2
17
18 # create special fstab not bind-mounting /home
19 cat <<EOF >/etc/schroot/coriolis2/fstab
20 # <file system> <mount point> <type> <options> <dump> <pass>
21 /proc /proc none rw,bind 0 0
22 /sys /sys none rw,bind 0 0
23 /dev /dev none rw,bind 0 0
24 /dev/pts /dev/pts none rw,bind 0 0
25 /tmp /tmp none rw,bind 0 0
26 EOF
27
28 # Add coriolis config to schroot.conf
29 cat <<EOF >>/etc/schroot/schroot.conf
30 [coriolis]
31 description=Debian Buster for Coriolis
32 directory=/opt/chroot/coriolis
33 groups=sbuild-security,$SUDO_USER,users
34 type=directory
35 profile=coriolis2
36 EOF
37
38 echo "Adding the following coriolis section to /etc/schroot/schroot.conf:
39
40 [coriolis]
41 description=Debian Buster for Coriolis
42 directory=/opt/chroot/coriolis
43 groups=sbuild-security,$SUDO_USER,users
44 type=directory
45 profile=coriolis2
46
47 This enables you to chroot into coriolis as an unprivileged user by running
48 'schroot -c coriolis /bin/bash'
49 "
50
51 # Install apt dependencies in the chroot
52 cd /tmp
53 schroot -c coriolis /bin/bash << EOF
54 echo Installing necessary apt dependencies in the chroot
55 apt-get update -y
56 apt-get upgrade -y
57 apt-get install -y automake binutils-dev bison build-essential \
58 sysvinit-utils sysvinit-core \
59 ccache clang cmake doxygen dvipng flex gcc git graphviz \
60 imagemagick libboost-all-dev libboost-python-dev libbz2-dev \
61 libmpfr-dev libgmp-dev libmotif-dev libreadline-dev \
62 libqwt-dev libtool libx11-dev libxaw7-dev libxml2-dev \
63 python2.7 python2.7-dev \
64 libxpm-dev libxt-dev python3.7 python3-jinja2 python3-pip \
65 python3-setuptools python-dev python-qt4 python-sphinx \
66 qt4-dev-tools rapidjson-dev tcl tcl-dev tcl-tclreadline \
67 texlive texlive-fonts-extra texlive-lang-french \
68 texlive-latex-extra texlive-pictures xfig yosys zlib1g-dev
69
70 # yeah don't add systemd in a chroot. not funny joke
71 apt-get remove -y systemd
72
73 # Create user with same UID in the chroot
74 useradd -m -p `python3 -c 'import crypt; print (crypt.crypt("1234","Fx"))'` \
75 -s /bin/bash $SUDO_USER -k /etc/skel
76 echo -e "
77 Added user ${SUDO_USER} with \e[1;91mpassword: 1234\e[0m"
78
79 echo -e "
80 \e[1;91mPlease use command 'passwd ${SUDO_USER}' to change this immediately after this script is run for security purposes.\e[0m
81 "
82
83 # Add convenience variable to chroot user .bash_profile
84 echo -e 'export PATH=/usr/lib/ccache:"\044PATH"\nexport DISPLAY=:0.0\nexport ALLIANCE_TOP=/home/$SUDO_USER/alliance/install\nexport YOSYS_TOP=/home/$SUDO_USER/yosys\nexport LD_LIBRARY_PATH=\044{ALLIANCE_TOP}/lib:\044{LD_LIBRARY_PATH}\nexport LD_LIBRARY_PATH=\044{ALLIANCE_TOP}/lib64:\044{LD_LIBRARY_PATH}' > /home/$SUDO_USER/.bash_profile
85 chown $SUDO_USER /home/$SUDO_USER/.bash_profile
86 chgrp $SUDO_USER /home/$SUDO_USER/.bash_profile
87
88 echo -e "Added 'export PATH=/usr/lib/ccache:\"\044PATH\"\nexport DISPLAY=:0.0' to /home/$SUDO_USER/.bash_profile to speed up rebuilds"
89 EOF
90
91 # Build and install yosys from source
92 # note that a specific version of yosys is needed for ls180 at the moment
93 chroot /opt/chroot/coriolis /bin/bash << EOF
94 apt-get update -y
95 apt-get build-dep yosys -y
96 apt-get remove yosys -y
97 EOF
98 runuser $SUDO_USER --preserve-environment -c 'schroot -c coriolis /bin/bash << EOF
99 cd /home/$SUDO_USER
100 git clone https://github.com/cliffordwolf/yosys.git
101 cd yosys
102 git checkout 049e3abf9baf795e69b9ecb9c4f19de6131f8418
103 make config-clang
104 make -j$(nproc)
105 EOF'
106
107 chroot /opt/chroot/coriolis /bin/bash << EOF
108 cd /home/$SUDO_USER/yosys
109 make install
110 EOF
111
112 # Install coriolis2 from source
113 runuser $SUDO_USER --preserve-environment -c 'schroot -c coriolis /bin/bash << EOF
114 cd /home/$SUDO_USER
115 source .bash_profile
116 mkdir -p /home/$SUDO_USER/coriolis-2.x/src
117 cd /home/$SUDO_USER/coriolis-2.x/src
118 git clone https://gitlab.lip6.fr/vlsi-eda/coriolis.git
119 cd coriolis
120 git checkout devel
121 ./bootstrap/ccb.py --project=coriolis --make="-j$(nproc) install"
122
123 # Setup and test coriolisenv
124 /home/$SUDO_USER/coriolis-2.x/src/coriolis/bootstrap/coriolisEnv.py > /home/$SUDO_USER/coriolisenv
125 source /home/$SUDO_USER/.bash_profile
126 source /home/$SUDO_USER/coriolisenv
127 EOF'
128
129 # Install alliance from source
130 runuser $SUDO_USER --preserve-environment -c 'schroot -c coriolis /bin/bash << EOF
131 cd /home/$SUDO_USER
132 source coriolisenv
133 git clone https://gitlab.lip6.fr/vlsi-eda/alliance.git
134 mkdir -p /home/$SUDO_USER/alliance/build /home/$SUDO_USER/alliance/install
135 mv alliance/alliance/src alliance
136 rm -rf alliance/alliance
137 cd alliance/src
138 ./autostuff
139 cd /home/$SUDO_USER/alliance/build
140 ../src/configure --prefix=/home/$SUDO_USER/alliance/install --enable-alc-shared
141 EOF'
142
143 chroot /opt/chroot/coriolis /bin/bash << EOF
144 cd /home/$SUDO_USER/alliance/build
145 source /home/$SUDO_USER/coriolisenv
146 make -j1 install
147 EOF
148
149 # Install and configure alliance-check-toolkit
150 runuser $SUDO_USER --preserve-environment -c 'schroot -c coriolis /bin/bash << EOF
151 cd /home/$SUDO_USER
152 git clone https://gitlab.lip6.fr/vlsi-eda/alliance-check-toolkit.git
153 source coriolisenv
154 touch alliance-check-toolkit/etc/mk/users.d/user-$SUDO_USER.mk
155 cat <<EOG >>alliance-check-toolkit/etc/mk/users.d/user-$SUDO_USER.mk
156 export CORIOLIS_TOP=/home/$SUDO_USER/coriolis-2.x/Linux.x86_64/Release.Shared/install
157 export ALLIANCE_TOP=/home/$SUDO_USER/alliance/install
158 export CHECK_TOOLKIT=/home/$SUDO_USER/alliance-check-toolkit
159 export YOSYS_TOP=/home/$SUDO_USER/yosys
160 EOG
161 source /home/$SUDO_USER/.bash_profile
162 cd alliance-check-toolkit/benchs/ARM/cmos
163 make lvx
164 echo -e "
165 \e[1;91mSelect File -> Open Cell or press CTRL + o then enter as the cell name 'arm_chip_cts_r' without the single quotation marks.\e[0m
166 "
167 make cgt
168 EOF'
169