DF-2217 / build.sh
#!/bin/sh # DF-2217 build: the seeded PoC (compiles; needs -I to the in-tree nvme headers). # On the audit host: cc -o nvme_getlog nvme_getlog.c -I sys/dev/disk/nvme # In guest there is no /sys/dev/disk/nvme include path, so this is host-built. cc -o nvme_getlog nvme_getlog.c -Isys/dev/disk/nvme 2>&1 echo "BUILD_EXIT=$?" |