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