From 008622844c0ce84a7bae7e9500fa2f7f0ff10d83 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Fri, 2 Jun 2017 19:22:39 -0700 Subject: [PATCH] Increase filesystem size to 1024 MB I needed to do this to fit gcc/binutils. --- mk/filesystem.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/filesystem.mk b/mk/filesystem.mk index d1eb674..330d92c 100644 --- a/mk/filesystem.mk +++ b/mk/filesystem.mk @@ -1,7 +1,7 @@ build/filesystem.bin: userspace -$(FUMOUNT) build/filesystem/ || true rm -rf $@ build/filesystem/ - dd if=/dev/zero of=$@ bs=1048576 count=128 + dd if=/dev/zero of=$@ bs=1048576 count=1024 cargo run --manifest-path schemes/redoxfs/Cargo.toml --quiet --release --bin redoxfs-mkfs $@ mkdir -p build/filesystem/ cargo build --manifest-path schemes/redoxfs/Cargo.toml --quiet --release --bin redoxfs