DF-2979 / build.sh
#!/bin/sh # DF-2979 build: compile the trigger module + unprivileged PoC inside the guest. # Run ON THE GUEST in the directory holding dfp.c/poc.c (e.g. /tmp/dfp). set -e echo "== building dfp.ko ==" make -m /usr/share/mk 2>&1 echo "== building poc ==" cc -O2 -Wall -o poc poc.c 2>&1 ls -l dfp.ko poc |