From: Francesco Dolcini Date: Thu, 21 Jul 2022 13:17:38 +0000 (+0200) Subject: toradex: common: Improve product/serial print during boot X-Git-Tag: baikal/mips/sdk5.8.2~5^2~273^2~83 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=fe16bf386c2f7c75f438149a4235312caf424eb3;p=uboot.git toradex: common: Improve product/serial print during boot Add product id print in show_board_info(), with an increasing number of Toradex SKUs available with small differences it makes sense to print it. Move serial number print to a dedicated line, this prevents the previous line with the product name to overflow the 80 columns with any reasonable product name length. Signed-off-by: Francesco Dolcini --- diff --git a/board/toradex/common/tdx-common.c b/board/toradex/common/tdx-common.c index 2284fcddb5..fadbe45541 100644 --- a/board/toradex/common/tdx-common.c +++ b/board/toradex/common/tdx-common.c @@ -115,10 +115,11 @@ int show_board_info(void) env_set("serial#", tdx_serial_str); - printf("Model: Toradex %s %s, Serial# %s\n", + printf("Model: Toradex %04d %s %s\n", + tdx_hw_tag.prodid, toradex_modules[tdx_hw_tag.prodid].name, - tdx_board_rev_str, - tdx_serial_str); + tdx_board_rev_str); + printf("Serial#: %s\n", tdx_serial_str); #ifdef CONFIG_TDX_CFG_BLOCK_EXTRA if (read_tdx_cfg_block_carrier()) { printf("MISSING TORADEX CARRIER CONFIG BLOCKS\n");