https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
/** @file
|
|
Type 2: Base Board Information.
|
|
|
|
Copyright (c) 2013-2015 Intel Corporation.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
|
|
#include "CommonHeader.h"
|
|
#include "SmbiosMisc.h"
|
|
|
|
//
|
|
// Static (possibly build generated) Bios Vendor data.
|
|
//
|
|
MISC_SMBIOS_TABLE_DATA(EFI_MISC_BASE_BOARD_MANUFACTURER_DATA, MiscBaseBoardManufacturer)
|
|
= {
|
|
STRING_TOKEN(STR_MISC_BASE_BOARD_MANUFACTURER),
|
|
STRING_TOKEN(STR_MISC_BASE_BOARD_PRODUCT_NAME),
|
|
STRING_TOKEN(STR_MISC_BASE_BOARD_VERSION),
|
|
STRING_TOKEN(STR_MISC_BASE_BOARD_SERIAL_NUMBER),
|
|
STRING_TOKEN(STR_MISC_BASE_BOARD_ASSET_TAG),
|
|
STRING_TOKEN(STR_MISC_BASE_BOARD_CHASSIS_LOCATION),
|
|
{ // BaseBoardFeatureFlags
|
|
1, // Motherboard
|
|
0, // RequiresDaughterCard
|
|
0, // Removable
|
|
1, // Replaceable,
|
|
0, // HotSwappable
|
|
0, // Reserved
|
|
},
|
|
EfiBaseBoardTypeUnknown, // BaseBoardType
|
|
{ // BaseBoardChassisLink
|
|
EFI_MISC_SUBCLASS_GUID, // ProducerName
|
|
1, // Instance
|
|
1, // SubInstance
|
|
},
|
|
0, // BaseBoardNumberLinks
|
|
{ // LinkN
|
|
EFI_MISC_SUBCLASS_GUID, // ProducerName
|
|
1, // Instance
|
|
1, // SubInstance
|
|
},
|
|
};
|