From 2ff2526c5cb7c89676ab297494e4d2ab948af5a3 Mon Sep 17 00:00:00 2001 From: Flavio Ceolin Date: Mon, 21 Oct 2024 11:01:15 -0700 Subject: [PATCH] reports: footprint: Print footprint output Both ram and rom reports print their outputs in the console and publish their reports in json. footprint is wrapper to generate both reports but it is currently not printing their outputs in the console nor given any feedback to the user that those reports were generated. Change it to behave like the others reports allowing the user to see them and / or redirect to a file if they want. Signed-off-by: Flavio Ceolin --- cmake/reports/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/reports/CMakeLists.txt b/cmake/reports/CMakeLists.txt index 5cd3246f972..96cba730788 100644 --- a/cmake/reports/CMakeLists.txt +++ b/cmake/reports/CMakeLists.txt @@ -2,7 +2,7 @@ set(flag_for_ram_report ram) set(flag_for_rom_report rom) -set(flag_for_footprint all -q) +set(flag_for_footprint all) set(report_depth 99) if(DEFINED ZEPHYR_WORKSPACE)