DF-0981 / build.sh
#!/bin/sh # DF-0981 build script (run as the unprivileged maxx user on the guest). # Builds the userspace harness that faithfully replicates the # run_bulk_rx_callback() aggregated-frame / dmalen / m_copydata logic. set -e cd "$(dirname "$0")" cc -O2 -Wall -o run_aggr_oob run_aggr_oob.c echo "BUILD_OK: run_aggr_oob" ls -l run_aggr_oob |