]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/GenFds/OptRomFileStatement.py
e56174ec3c86fc22aa4662893a80a5ee1f1b17f0
[mirror_edk2.git] / BaseTools / Source / Python / GenFds / OptRomFileStatement.py
1 ## @file
2 # process OptionROM generation from FILE statement
3 #
4 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
5 #
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14
15 ##
16 # Import Modules
17 #
18 from __future__ import absolute_import
19 import Common.LongFilePathOs as os
20
21 from .GenFdsGlobalVariable import GenFdsGlobalVariable
22 ##
23 #
24 #
25 class OptRomFileStatement:
26 ## The constructor
27 #
28 # @param self The object pointer
29 #
30 def __init__(self):
31 self.FileName = None
32 self.FileType = None
33 self.OverrideAttribs = None
34
35 ## GenFfs() method
36 #
37 # Generate FFS
38 #
39 # @param self The object pointer
40 # @param Dict dictionary contains macro and value pair
41 # @retval string Generated FFS file name
42 #
43 def GenFfs(self, Dict = {}, IsMakefile=False):
44
45 if self.FileName is not None:
46 self.FileName = GenFdsGlobalVariable.ReplaceWorkspaceMacro(self.FileName)
47
48 return self.FileName
49
50
51