coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
sku.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #ifndef __JINLON_SKU_H__
4 #define __JINLON_SKU_H__
5 
6 /*
7  * SKU definition taken from
8  * https://buganizer.corp.google.com/issues/145688887#comment16
9  */
10 enum {
11  JINLON_SKU_01 = 1, /* No LTE, No view-angle-manegement */
12  JINLON_SKU_02 = 2, /* No LTE, view-angle-manegement */
13  JINLON_SKU_21 = 21, /* LTE, No view-angle-manegement */
14  JINLON_SKU_22 = 22, /* LTE, view-angle-manegement */
15 };
16 
17 #endif /* __JINLON_SKU_H__ */
@ JINLON_SKU_02
Definition: sku.h:12
@ JINLON_SKU_22
Definition: sku.h:14
@ JINLON_SKU_01
Definition: sku.h:11
@ JINLON_SKU_21
Definition: sku.h:13