coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
variant.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #ifndef VARIANT_H
4 #define VARIANT_H
5 
6 #include <baseboard/variants.h>
7 
8 /* TODO b/153027724: Sensor detection pin */
9 #define SENSOR_DET_360 GPP_C10
10 
11 const static sku_info skus[] = {
12  /* Deltaur 360 */
13  { .id = 1, .name = "sku1" },
14  /* Deltaur */
15  { .id = 2, .name = "sku2" },
16  /* Deltaur 360 signed */
17  { .id = 3, .name = "sku3" },
18  /* Deltaur signed */
19  { .id = 4, .name = "sku4" },
20 };
21 
22 #endif
static const sku_info skus[]
Definition: variant.h:11
int id
Definition: variants.h:23