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 #include <gpio.h>
8 #include <variant/gpio.h>
9 
10 const static sku_info skus[] = {
11  /* Deltan 360 - invalid configuration */
12  { .id = -1, .name = "sku_invalid" },
13  /* Deltan */
14  { .id = 1, .name = "sku1" },
15  /* Deltan 360 signed - invalid configuration */
16  { .id = -1, .name = "sku_invalid" },
17  /* Deltan signed */
18  { .id = 2, .name = "sku2" },
19 };
20 
21 #endif
static const sku_info skus[]
Definition: variant.h:10
int id
Definition: variants.h:23