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