mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
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: Bob Feng <bob.c.feng@intel.com>
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
## @file
|
|
# process FFS generation
|
|
#
|
|
# Copyright (c) 2007-2018, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
|
|
##
|
|
# Import Modules
|
|
#
|
|
from Common.DataType import *
|
|
|
|
# mapping between FILE type in FDF and file type for GenFfs
|
|
FdfFvFileTypeToFileType = {
|
|
SUP_MODULE_SEC : 'EFI_FV_FILETYPE_SECURITY_CORE',
|
|
SUP_MODULE_PEI_CORE : 'EFI_FV_FILETYPE_PEI_CORE',
|
|
SUP_MODULE_PEIM : 'EFI_FV_FILETYPE_PEIM',
|
|
SUP_MODULE_DXE_CORE : 'EFI_FV_FILETYPE_DXE_CORE',
|
|
'FREEFORM' : 'EFI_FV_FILETYPE_FREEFORM',
|
|
'DRIVER' : 'EFI_FV_FILETYPE_DRIVER',
|
|
'APPLICATION' : 'EFI_FV_FILETYPE_APPLICATION',
|
|
'FV_IMAGE' : 'EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE',
|
|
'RAW' : 'EFI_FV_FILETYPE_RAW',
|
|
'PEI_DXE_COMBO' : 'EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER',
|
|
'SMM' : 'EFI_FV_FILETYPE_SMM',
|
|
SUP_MODULE_SMM_CORE : 'EFI_FV_FILETYPE_SMM_CORE',
|
|
SUP_MODULE_MM_STANDALONE : 'EFI_FV_FILETYPE_MM_STANDALONE',
|
|
SUP_MODULE_MM_CORE_STANDALONE : 'EFI_FV_FILETYPE_MM_CORE_STANDALONE'
|
|
}
|
|
|
|
# mapping between section type in FDF and file suffix
|
|
SectionSuffix = {
|
|
BINARY_FILE_TYPE_PE32 : '.pe32',
|
|
BINARY_FILE_TYPE_PIC : '.pic',
|
|
BINARY_FILE_TYPE_TE : '.te',
|
|
BINARY_FILE_TYPE_DXE_DEPEX : '.dpx',
|
|
'VERSION' : '.ver',
|
|
BINARY_FILE_TYPE_UI : '.ui',
|
|
'COMPAT16' : '.com16',
|
|
'RAW' : '.raw',
|
|
'FREEFORM_SUBTYPE_GUID': '.guid',
|
|
'SUBTYPE_GUID' : '.guid',
|
|
'FV_IMAGE' : 'fv.sec',
|
|
'COMPRESS' : '.com',
|
|
'GUIDED' : '.guided',
|
|
BINARY_FILE_TYPE_PEI_DEPEX : '.dpx',
|
|
BINARY_FILE_TYPE_SMM_DEPEX : '.dpx'
|
|
}
|