Merge pull request #951 from ids1024/filesystem

Increase filesystem size to 1024 MB
This commit is contained in:
Jeremy Soller 2017-06-02 21:03:58 -06:00 committed by GitHub
commit a5fd4c9b36

View file

@ -1,7 +1,7 @@
build/filesystem.bin: filesystem.toml build/filesystem.bin: filesystem.toml
-$(FUMOUNT) build/filesystem/ || true -$(FUMOUNT) build/filesystem/ || true
rm -rf $@ $@.partial build/filesystem/ rm -rf $@ $@.partial build/filesystem/
dd if=/dev/zero of=$@.partial bs=1048576 count=128 dd if=/dev/zero of=$@.partial bs=1048576 count=1024
cargo run --manifest-path installer/redoxfs/Cargo.toml --quiet --release --bin redoxfs-mkfs $@.partial cargo run --manifest-path installer/redoxfs/Cargo.toml --quiet --release --bin redoxfs-mkfs $@.partial
mkdir -p build/filesystem/ mkdir -p build/filesystem/
cargo build --manifest-path installer/redoxfs/Cargo.toml --quiet --release --bin redoxfs cargo build --manifest-path installer/redoxfs/Cargo.toml --quiet --release --bin redoxfs