DragonFlyBSD Kernel Audit
DF-0220 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0220 build: compile the probe and the reference keystream computer.
# Runs on the DragonFly guest as the unprivileged user.
set -e
cd "$(dirname "$0")"
cc -O2 -o rand_probe rand_probe.c
cc -O2 -o ref_keystream ref_keystream.c
echo "BUILD_OK: rand_probe ref_keystream"