aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/rockchip/rk3288/Makefile.inc4
-rw-r--r--src/soc/rockchip/rk3399/Makefile.inc4
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