From 7b58e44ea7945b4c6a9b52262c72587dbd268a85 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 13 Sep 2017 16:35:24 -0600 Subject: [PATCH] Do not use quiet on cargo build in filesystem target --- mk/filesystem.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mk/filesystem.mk b/mk/filesystem.mk index 9918a76..9e39ae0 100644 --- a/mk/filesystem.mk +++ b/mk/filesystem.mk @@ -2,10 +2,10 @@ build/filesystem.bin: filesystem.toml build/kernel -$(FUMOUNT) build/filesystem/ || true rm -rf $@ $@.partial build/filesystem/ dd if=/dev/zero of=$@.partial bs=1048576 count=512 - cargo run --manifest-path redoxfs/Cargo.toml --quiet --release --bin redoxfs-mkfs $@.partial + cargo run --manifest-path redoxfs/Cargo.toml --release --bin redoxfs-mkfs $@.partial mkdir -p build/filesystem/ - cargo build --manifest-path redoxfs/Cargo.toml --quiet --release --bin redoxfs - cargo run --manifest-path redoxfs/Cargo.toml --quiet --release --bin redoxfs -- $@.partial build/filesystem/ + cargo build --manifest-path redoxfs/Cargo.toml --release --bin redoxfs + cargo run --manifest-path redoxfs/Cargo.toml --release --bin redoxfs -- $@.partial build/filesystem/ sleep 2 pgrep redoxfs cp build/kernel build/filesystem/kernel @@ -32,8 +32,8 @@ build/filesystem.bin: filesystem.toml build/kernel mount: FORCE mkdir -p build/filesystem/ - cargo build --manifest-path redoxfs/Cargo.toml --quiet --release --bin redoxfs - cargo run --manifest-path redoxfs/Cargo.toml --quiet --release --bin redoxfs -- build/harddrive.bin build/filesystem/ + cargo build --manifest-path redoxfs/Cargo.toml --release --bin redoxfs + cargo run --manifest-path redoxfs/Cargo.toml --release --bin redoxfs -- build/harddrive.bin build/filesystem/ sleep 2 pgrep redoxfs