DF-1040 / build.sh
#!/bin/sh # DF-1040 harness build — compiles the userspace logic harness on the guest. # (The actual trigger requires PCMCIA bridge hardware not present on this guest; # the harness proves the offset-arithmetic primitive at the object level.) set -e cd "$(dirname "$0")" cc -O2 -Wall -o cis_oob_harness cis_oob_harness.c echo "BUILD_OK: cis_oob_harness" ls -l cis_oob_harness |