DF-0794 / build.sh
#!/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 |