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 \ |
| 7 | openjdk8 \ |
| 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 \ |
Arthur She | f013456 | 2022-04-12 13:04:31 -0700 | [diff] [blame] | 20 | py38-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 |