Board: print version; don't print N/A

This commit is contained in:
李通洲
2023-06-19 21:17:07 +08:00
parent 9f5dc24bf6
commit eef3afabb7
2 changed files with 6 additions and 2 deletions
+2 -1
View File
@@ -23,7 +23,8 @@ static bool hostValueSet(FFstrbuf* value)
ffStrbufIgnCaseCompS(value, "Not Applicable") != 0 &&
ffStrbufIgnCaseCompS(value, "INVALID") != 0 &&
ffStrbufIgnCaseCompS(value, "Type1ProductConfigId") != 0 &&
ffStrbufIgnCaseCompS(value, "All Series") != 0
ffStrbufIgnCaseCompS(value, "All Series") != 0 &&
ffStrbufIgnCaseCompS(value, "N/A") != 0
;
}
+4 -1
View File
@@ -26,7 +26,10 @@ void ffPrintBoard(FFinstance* instance, FFBoardOptions* options)
if(options->moduleArgs.outputFormat.length == 0)
{
ffPrintLogoAndKey(instance, FF_BOARD_MODULE_NAME, 0, &options->moduleArgs.key, &options->moduleArgs.keyColor);
puts(result.boardName.chars);
ffStrbufWriteTo(&result.boardName, stdout);
if (result.boardVersion.length)
printf(" (%s)", result.boardVersion.chars);
putchar('\n');
}
else
{