From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: eric.jin@intel.com) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by groups.io with SMTP; Mon, 10 Jun 2019 23:21:29 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Jun 2019 23:21:29 -0700 X-ExtLoop1: 1 Received: from jjin9-mobl.ccr.corp.intel.com ([10.239.193.215]) by orsmga001.jf.intel.com with ESMTP; 10 Jun 2019 23:21:28 -0700 From: "Eric Jin" To: devel@edk2.groups.io Subject: [PATCH v3 0/1] BaseTools/Capsule: Tool to Generate Windows Firmware Update Driver Date: Tue, 11 Jun 2019 14:21:18 +0800 Message-Id: <20190611062118.14584-1-eric.jin@intel.com> X-Mailer: git-send-email 2.20.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit V3 change: Remove unnecessary else block Remove f.close() from with open() block V2 change: Use "with" statement for the open() calls. Remove trailing whitespace. V1: Initial version to enable this tool Eric Jin (1): BaseTools/Capsule: Tool to Generate Windows Firmware Update Driver BaseTools/Source/Python/Capsule/CatGenerator.py | 159 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ BaseTools/Source/Python/Capsule/GenerateWindowsDriver.py | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ BaseTools/Source/Python/Capsule/InfGenerator.py | 210 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ BaseTools/Source/Python/Capsule/WindowsCapsuleSupportHelper.py | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 585 insertions(+) create mode 100644 BaseTools/Source/Python/Capsule/CatGenerator.py create mode 100644 BaseTools/Source/Python/Capsule/GenerateWindowsDriver.py create mode 100644 BaseTools/Source/Python/Capsule/InfGenerator.py create mode 100644 BaseTools/Source/Python/Capsule/WindowsCapsuleSupportHelper.py -- 2.20.1.windows.1