]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/CommonDataClass/CommonClass.py
BaseTools: Enhance BaseTools supports FixedAtBuild usage in VFR file
[mirror_edk2.git] / BaseTools / Source / Python / CommonDataClass / CommonClass.py
index 7a0123b1d90f1890527ef08f1a951464266efbae..5e908a6edf2ae75618622bb943c1c89ecb914631 100644 (file)
@@ -1,7 +1,7 @@
 ## @file\r
 # This file is used to define common items of class object\r
 #\r
-# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.    The full text of the license may be found at\r
@@ -38,7 +38,7 @@ def GenerateHelpText(Text, Lang):
 #                      ALWAYS_CONSUMED | SOMETIMES_CONSUMED | ALWAYS_PRODUCED | SOMETIMES_PRODUCED | TO_START | BY_START | PRIVATE\r
 # @var FeatureFlag:    To store value for FeatureFlag\r
 # @var SupArchList:    To store value for SupArchList, selection scope is in below list\r
-#                      EBC | IA32 | X64 | IPF | ARM | PPC\r
+#                      EBC | IA32 | X64 | IPF | ARM | PPC | AARCH64\r
 # @var HelpText:       To store value for HelpText\r
 #\r
 class CommonClass(object):\r
@@ -270,7 +270,7 @@ class PpiClass(GuidProtocolPpiCommonClass):
 #\r
 class SkuInfoClass(object):\r
     def __init__(self, SkuIdName = '', SkuId = '', VariableName = '', VariableGuid = '', VariableOffset = '', \r
-                 HiiDefaultValue = '', VpdOffset = '', DefaultValue = '', VariableGuidValue = ''):\r
+                 HiiDefaultValue = '', VpdOffset = '', DefaultValue = '', VariableGuidValue = '', VariableAttribute = ''):\r
         self.SkuIdName = SkuIdName\r
         self.SkuId = SkuId\r
         \r
@@ -282,6 +282,7 @@ class SkuInfoClass(object):
         self.VariableGuidValue = VariableGuidValue\r
         self.VariableOffset = VariableOffset\r
         self.HiiDefaultValue = HiiDefaultValue\r
+        self.VariableAttribute = VariableAttribute\r
         \r
         #\r
         # Used by Vpd\r
@@ -400,7 +401,7 @@ class PcdClass(CommonClass):
 # @var TagName:                  To store value for TagName\r
 # @var ToolCode:                 To store value for ToolCode\r
 # @var SupArchList:              To store value for SupArchList, selection scope is in below list\r
-#                                EBC | IA32 | X64 | IPF | ARM | PPC\r
+#                                EBC | IA32 | X64 | IPF | ARM | PPC | AARCH64\r
 #\r
 class BuildOptionClass(IncludeStatementClass):\r
     def __init__(self, ToolChainFamily = '', ToolChain = '', Option = ''):\r