repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git]
/
src
/
mainboard
/
intel
/
galileo
/
mainboard.c
blob
2e3c3082f8e37b09d86efb6da4dceb9e241e9989
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
}