coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
mainboard.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <smbios.h>
4 
5 /* Set the board version */
6 const char *smbios_mainboard_version(void)
7 {
8  if (CONFIG(GALILEO_GEN2))
9  return "Gen 2";
10  return "1.0";
11 }
@ CONFIG
Definition: dsi_common.h:201
const char * smbios_mainboard_version(void)
Definition: mainboard.c:6