Leonardo Sandoval | 854babb | 2022-01-27 10:20:00 -0600 | [diff] [blame] | 1 | #! /usr/bin/env sh |
| 2 | |
| 3 | pkg install -y \ |
| 4 | curl \ |
| 5 | git \ |
| 6 | gnupg \ |
Arthur She | 84878ab | 2022-12-11 22:05:54 -0800 | [diff] [blame] | 7 | openjdk11 \ |
Leonardo Sandoval | 854babb | 2022-01-27 10:20:00 -0600 | [diff] [blame] | 8 | python3 \ |
| 9 | unzip \ |
| 10 | cmake \ |
| 11 | valgrind \ |
| 12 | doxygen \ |
| 13 | graphviz \ |
| 14 | lcov \ |
| 15 | wget \ |
| 16 | lsof \ |
| 17 | gmake \ |
| 18 | perl5 \ |
Arthur She | 48dc52a | 2022-04-12 12:44:50 -0700 | [diff] [blame] | 19 | bash \ |
Kelley Spoon | 76b556e | 2022-12-13 06:42:41 -0600 | [diff] [blame] | 20 | py39-pip |
Leonardo Sandoval | 854babb | 2022-01-27 10:20:00 -0600 | [diff] [blame] | 21 | |
| 22 | mount -t fdescfs fdesc /dev/fd |
| 23 | mount -t procfs proc /proc |
| 24 | |
| 25 | echo 'fdesc /dev/fd fdescfs rw 0 0' >> /etc/fstab |
| 26 | echo 'proc /proc procfs rw 0 0' >> /etc/fstab |