Introduce FreeBSD script builder
NOTE that this commit does not build the AMI, just define it.
Signed-off-by: Leonardo Sandoval <leonardo.sandoval@linaro.org>
Change-Id: I0a64df9635b0893b77410f33f69f51c4c94fead6
diff --git a/freebsd.sh b/freebsd.sh
new file mode 100644
index 0000000..b7e43f1
--- /dev/null
+++ b/freebsd.sh
@@ -0,0 +1,25 @@
+#! /usr/bin/env sh
+
+pkg install -y \
+ curl \
+ git \
+ gnupg \
+ openjdk8 \
+ python3 \
+ unzip \
+ cmake \
+ valgrind \
+ doxygen \
+ graphviz \
+ lcov \
+ wget \
+ lsof \
+ gmake \
+ perl5 \
+ bash
+
+mount -t fdescfs fdesc /dev/fd
+mount -t procfs proc /proc
+
+echo 'fdesc /dev/fd fdescfs rw 0 0' >> /etc/fstab
+echo 'proc /proc procfs rw 0 0' >> /etc/fstab