blob: 699b66a0c3bc237a23dc07ea9b9e77fc3c993ef4 [file] [log] [blame]
Leonardo Sandoval854babb2022-01-27 10:20:00 -06001#! /usr/bin/env sh
2
3pkg install -y \
4 curl \
5 git \
6 gnupg \
Arthur She84878ab2022-12-11 22:05:54 -08007 openjdk11 \
Leonardo Sandoval854babb2022-01-27 10:20:00 -06008 python3 \
9 unzip \
10 cmake \
11 valgrind \
12 doxygen \
13 graphviz \
14 lcov \
15 wget \
16 lsof \
17 gmake \
18 perl5 \
Arthur She48dc52a2022-04-12 12:44:50 -070019 bash \
Kelley Spoon76b556e2022-12-13 06:42:41 -060020 py39-pip
Leonardo Sandoval854babb2022-01-27 10:20:00 -060021
22mount -t fdescfs fdesc /dev/fd
23mount -t procfs proc /proc
24
25echo 'fdesc /dev/fd fdescfs rw 0 0' >> /etc/fstab
26echo 'proc /proc procfs rw 0 0' >> /etc/fstab