blob: fc81668f35dcc12765660999e900a3fcf51ac830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#
# This file contains an 'Intel Peripheral Driver' and is
# licensed for Intel CPUs and chipsets under the terms of your
# license agreement with Intel or your vendor. This file may
# be modified by the user, subject to additional terms of the
# license agreement
#
#/** @file
# This file is used to define the BIOS ID parameters of the build.
# This file is processed by GenBiosId.
# The BIOS ID format conforms to "BIOS Revision Identification Specification", Rev. 0.7, 6/27/2001.
#
# BIOS ID string format:
# $(BOARD_ID)$(BOARD_REV).$(OEM_ID).$(VERSION_MAJOR).$(BUILD_TYPE)$(VERSION_MINOR).YYMMDDHHMM
# All fields must have a fixed length.
# Example: "TRFTCRB1.86C.0008.D03.0506081529"
#
# Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
# This software and associated documentation (if any) is furnished
# under a license and may only be used or copied in accordance
# with the terms of the license. Except as permitted by such
# license, no part of this software or documentation may be
# reproduced, stored in a retrieval system, or transmitted in any
# form or by any means without the express written consent of
# Intel Corporation.
#
#**/
#Here is the color mapping to the BIOS version character indicators:
#0 = Don't display any color bar (backward compatibility)
#X = Brown with text "This a untested BIOS. Do NOT file issues"
#Y = Orange with text "Only daily automated testing done. DO NOT file issues"
#P = Purple with text "This BIOS is built only to fix a specific issue"
#B = Blue with text "PASSED WEEKLY BAT"
BOARD_REV = 1
OEM_ID = 86C
BUILD_TYPE = <set at build time>
VERSION_MAJOR = X069
VERSION_MINOR = 00
BOARD_ID = <set at build time>
|