blob: 2e3c3082f8e37b09d86efb6da4dceb9e241e9989 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <smbios.h>
/* Set the board version */
const char *smbios_mainboard_version(void)
{
if (CONFIG(GALILEO_GEN2))
return "Gen 2";
return "1.0";
}
|