coreboot-kgpe-d16/src/mainboard/intel/galileo/mainboard.c

12 lines
201 B
C
Raw Normal View History

/* 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";
}