diff options
author | 2010-02-18 07:59:53 +0000 | |
---|---|---|
committer | 2010-02-18 07:59:53 +0000 | |
commit | 9fea9565e89a6fb5486d8f481698b86d86202e53 (patch) | |
tree | 96a4cac00fce4c3c8403b6daee4bebc2942ec83b | |
parent | Add -q flag for compatiblity with newfs as requested by miod@ (diff) | |
download | wireguard-openbsd-9fea9565e89a6fb5486d8f481698b86d86202e53.tar.xz wireguard-openbsd-9fea9565e89a6fb5486d8f481698b86d86202e53.zip |
fsck_ext2fs is not reliable on small filesystems, so remove -f for now
-rw-r--r-- | distrib/loongson/miniroot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distrib/loongson/miniroot/Makefile b/distrib/loongson/miniroot/Makefile index ff85254caaa..17f638482d6 100644 --- a/distrib/loongson/miniroot/Makefile +++ b/distrib/loongson/miniroot/Makefile @@ -41,7 +41,7 @@ rd_setup: echo 'u\ne 0\n83\n\n63\n*\nw\nq\n' | fdisk -e ${VND} > /dev/null echo 'w\ny\nq\n' | disklabel -E ${VND} > /dev/null newfs_ext2fs ${VND_RIDEV} - fsck_ext2fs -f ${VND_RIDEV} + fsck_ext2fs ${VND_RIDEV} mount ${VND_IDEV} ${MOUNT_POINT} rd_teardown: |