]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Capsule/WindowsCapsuleSupportHelper.py
BaseTools/Capsule: Tool to generate Windows Firmware Update Driver
[mirror_edk2.git] / BaseTools / Source / Python / Capsule / WindowsCapsuleSupportHelper.py
index 166af58d8151048d50076d3357c44fca81f30e56..a29ac21ae8902f8a7145de153a031975ffa4a734 100644 (file)
@@ -3,7 +3,11 @@
 # Windows Firmware Update Platform spec.\r
 # Creates INF, Cat, and then signs it\r
 #\r
+# To install run pip install --upgrade edk2-pytool-library\r
+# edk2-pytool-library-0.9.1 is required.\r
+#\r
 # Copyright (c) Microsoft Corporation. All rights reserved.\r
+# Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>\r
 # SPDX-License-Identifier: BSD-2-Clause-Patent\r
 ##\r
 \r
@@ -12,14 +16,12 @@ import re
 import datetime\r
 import os\r
 import logging\r
-from MuEnvironment import PluginManager\r
-from MuPythonLibrary.Uefi.Capsule.CatGenerator import *\r
-from MuPythonLibrary.Uefi.Capsule.InfGenerator import *\r
-from MuPythonLibrary.UtilityFunctions import CatalogSignWithSignTool\r
-from MuPythonLibrary.Windows.VsWhereUtilities import FindToolInWinSdk\r
-\r
+from edk2toollib.windows.capsule.cat_generator import CatGenerator\r
+from edk2toollib.windows.capsule.inf_generator import InfGenerator\r
+from edk2toollib.utility_functions import CatalogSignWithSignTool\r
+from edk2toollib.windows.locate_tools import FindToolInWinSdk\r
 \r
-class WindowsCapsuleSupportHelper(PluginManager.IUefiHelperPlugin):\r
+class WindowsCapsuleSupportHelper(object):\r
 \r
   def RegisterHelpers(self, obj):\r
       fp = os.path.abspath(__file__)\r