diff options
author | Laurent Cimon <laurent@nilio.ca> | 2020-10-17 16:25:13 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-20 14:40:47 +0200 |
commit | b4790010a8889e617fa60295f91080e1e0546d01 (patch) | |
tree | ada1014ad255591b40cc701c4658dd76cf5e0362 /Meta/build-image-qemu.sh | |
parent | a82c56f9f7eb19fa6ac8a09cb7845cf681006f47 (diff) | |
download | serenity-b4790010a8889e617fa60295f91080e1e0546d01.zip |
Build: Modify various parts to allow the build to succeed on FreeBSD
Diffstat (limited to 'Meta/build-image-qemu.sh')
-rwxr-xr-x | Meta/build-image-qemu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/build-image-qemu.sh b/Meta/build-image-qemu.sh index 82f391610d..a6acf8d9cb 100755 --- a/Meta/build-image-qemu.sh +++ b/Meta/build-image-qemu.sh @@ -54,7 +54,7 @@ if [ "$(uname -s)" = "Darwin" ]; then elif [ "$(uname -s)" = "OpenBSD" ]; then mount -t ext2fs "/dev/${VND}i" mnt/ || die "could not mount filesystem" elif [ "$(uname -s)" = "FreeBSD" ]; then - fuse-ext2 -o rw+ "/dev/${MD}" mnt/ || die "could not mount filesystem" + fuse-ext2 -o rw+,direct_io "/dev/${MD}" mnt/ || die "could not mount filesystem" else if ! mount _disk_image mnt/ ; then if command -v genext2fs 1>/dev/null ; then |