diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2020-06-25 11:24:30 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2020-06-26 21:13:33 +0000 |
commit | 4ab5ce14301226aeff746cca9f1164c4a2a245e5 (patch) | |
tree | 6bfdcd38ff4285ba11d63be915813d874a5544d4 /src/soc/rockchip | |
parent | 97716b18d7968e886527991c78cb9c5bbb8eaa7e (diff) |
soc/rockchip: Use (Q) instead of @
This way make V=1 will tell you what it's actually doing.
Change-Id: I096bc2419e47a0b2a2454a792059464b27158cd9
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42818
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/rockchip')
-rw-r--r-- | src/soc/rockchip/rk3288/Makefile.inc | 4 | ||||
-rw-r--r-- | src/soc/rockchip/rk3399/Makefile.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/rockchip/rk3288/Makefile.inc b/src/soc/rockchip/rk3288/Makefile.inc index 527c04d62b..075fa36599 100644 --- a/src/soc/rockchip/rk3288/Makefile.inc +++ b/src/soc/rockchip/rk3288/Makefile.inc @@ -62,7 +62,7 @@ CPPFLAGS_common += -Isrc/soc/rockchip/common/include $(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.bin @printf "Generating: $(subst $(obj)/,,$(@))\n" - @mkdir -p $(dir $@) - @$(IDBTOOL) --from=$< --to=$@ --enable-align --chip=RK32 + $(Q)mkdir -p $(dir $@) + $(Q)$(IDBTOOL) --from=$< --to=$@ --enable-align --chip=RK32 endif diff --git a/src/soc/rockchip/rk3399/Makefile.inc b/src/soc/rockchip/rk3399/Makefile.inc index 763e11a5d5..8521bf3e14 100644 --- a/src/soc/rockchip/rk3399/Makefile.inc +++ b/src/soc/rockchip/rk3399/Makefile.inc @@ -69,7 +69,7 @@ CPPFLAGS_common += -Isrc/soc/rockchip/common/include $(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.bin @printf "Generating: $(subst $(obj)/,,$(@))\n" - @mkdir -p $(dir $@) - @$(IDBTOOL) --from=$< --to=$@ --enable-align --chip=RK33 + $(Q)mkdir -p $(dir $@) + $(Q)$(IDBTOOL) --from=$< --to=$@ --enable-align --chip=RK33 endif |