From: Michal Simek Date: Thu, 6 Mar 2025 10:12:30 +0000 (+0100) Subject: cmd: version: Get information about GCC and LD back X-Git-Tag: v2025.04-rc5~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca3bea3fc415ce40dc58f1bea9327f6fa12928bb;p=pandora-u-boot.git cmd: version: Get information about GCC and LD back U-Boot version command is no longer showing information about GCC and LD. The reason is that version.h has been removed that's why CC_VERSION_STRING and LD_VERSION_STRING are not pass. Values are generated to generated/version_autogenerated.h which is sourced in version.h. Fixes: 54ecce2cbf90 ("version: Separate our version string from the version command") Signed-off-by: Michal Simek --- diff --git a/cmd/version.c b/cmd/version.c index 53db1a0b6bd..62406608eb0 100644 --- a/cmd/version.c +++ b/cmd/version.c @@ -6,6 +6,7 @@ #include #include +#include #include #include #ifdef CONFIG_SYS_COREBOOT