coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
board_version.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SAMUS_BOARD_VERSION_H
4 #define SAMUS_BOARD_VERSION_H
5 
6 #include <boardid.h>
7 
8 #define SAMUS_EC_BOARD_VERSION_EVT1 3
9 #define SAMUS_EC_BOARD_VERSION_EVT2 4
10 #define SAMUS_EC_BOARD_VERSION_EVT3 5
11 #define SAMUS_EC_BOARD_VERSION_EVT4 0
12 #define SAMUS_EC_BOARD_VERSION_UNKNOWN BOARD_ID_UNKNOWN
13 
14 const char *samus_board_version(void);
15 
16 #endif
const char * samus_board_version(void)
Definition: board_version.c:6