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 <michal.si...@amd.com> --- Tom: Not sure if this has been done on purpose or not but this issue has been reported by our regression team. --- cmd/version.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/version.c b/cmd/version.c index 53db1a0b6bd1..62406608eb0b 100644 --- a/cmd/version.c +++ b/cmd/version.c @@ -6,6 +6,7 @@ #include <command.h> #include <display_options.h> +#include <version.h> #include <version_string.h> #include <linux/compiler.h> #ifdef CONFIG_SYS_COREBOOT -- 2.43.0