]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Scripts/ConvertFceToStructurePcd.py
MdeModulePkg/DxeCapsuleLibFmp: clone ESRT for runtime access
[mirror_edk2.git] / BaseTools / Scripts / ConvertFceToStructurePcd.py
index 59eec28d5e0010e467302accaa338d006e08c0fd..10f19dbe2f3c3e4319972d5970910ff9187e5224 100644 (file)
@@ -6,13 +6,7 @@
 # PCD setting in DEC/DSC/INF files.\r
 #\r
 # Copyright (c) 2018, 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
-# http://opensource.org/licenses/bsd-license.php\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+# SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 '''\r
@@ -135,7 +129,7 @@ class parser_lst(object):
                       tmp_dict[offset] = tmp_name\r
                       pcdname_num = int(pcdname_num_re.findall(t_name)[0],10)\r
                       uint = int(unit_num.findall(uint)[0],10)\r
-                      bit = uint / 8\r
+                      bit = uint // 8\r
                       for i in range(1, pcdname_num):\r
                         offset += bit\r
                         tmp_name = pcdname2_re.findall(t_name)[0] + '[%s]' % i\r
@@ -512,6 +506,8 @@ class mainprocess(object):
     for i in range(len(info_list)-1,-1,-1):\r
       if len(info_list[i]) == 0:\r
         info_list.remove(info_list[i])\r
+    for i in (inf_list, title_all, header_list):
+      i.sort()
     return keys,title_all,info_list,header_list,inf_list\r
 \r
   def remove_bracket(self,List):\r
@@ -523,6 +519,9 @@ class mainprocess(object):
           List[List.index(i)][i.index(j)] = "|".join(tmp)\r
         else:\r
           List[List.index(i)][i.index(j)] = j\r
+    for i in List:
+      if type(i) == type([0,0]):
+        i.sort()
     return List\r
 \r
   def write_all(self):\r