DragonFlyBSD Kernel Audit
DF-0794 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Build the superblock patcher. The patcher uses <vfs/ufs/fs.h> from
# the system headers, so it gets the real struct fs layout for free.
set -eu
cd "$(dirname "$0")"
echo "+ cc -O2 -Wall -o patch_image patch_image.c"
cc -O2 -Wall -o patch_image patch_image.c
echo "BUILD_EXIT=$?"
ls -l patch_image