[edk2] [Patch] BaseTools: Copy "MODULE_UNI_FILE" file into OUTPUT directory

Yonghong Zhu posted 1 patch 7 years ago
Failed in applying to current master (apply log)
BaseTools/Source/Python/AutoGen/AutoGen.py | 5 +++++
1 file changed, 5 insertions(+)
[edk2] [Patch] BaseTools: Copy "MODULE_UNI_FILE" file into OUTPUT directory
Posted by Yonghong Zhu 7 years ago
Current the "MODULE_UNI_FILE" item defined in the [Defines] section will
be copied into As Built INF file, but tool doesn't copy the real file into
same directory with the As Built INF file.

Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
---
 BaseTools/Source/Python/AutoGen/AutoGen.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py
index c18802f..62b93b7 100644
--- a/BaseTools/Source/Python/AutoGen/AutoGen.py
+++ b/BaseTools/Source/Python/AutoGen/AutoGen.py
@@ -3878,10 +3878,15 @@ class ModuleAutoGen(AutoGen):
           'guid_item'                         : [],
           'flags_item'                        : [],
           'libraryclasses_item'               : []
         }
 
+        if 'MODULE_UNI_FILE' in MDefs:
+            UNIFile = os.path.join(self.MetaFile.Dir, MDefs['MODULE_UNI_FILE'])
+            if os.path.isfile(UNIFile):
+                shutil.copy2(UNIFile, self.OutputDir)
+
         if self.AutoGenVersion > int(gInfSpecVersion, 0):
             AsBuiltInfDict['module_inf_version'] = '0x%08x' % self.AutoGenVersion
         else:
             AsBuiltInfDict['module_inf_version'] = gInfSpecVersion
 
-- 
2.6.1.windows.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Re: [edk2] [Patch] BaseTools: Copy "MODULE_UNI_FILE" file into OUTPUT directory
Posted by Gao, Liming 6 years, 11 months ago
Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
>Yonghong Zhu
>Sent: Thursday, April 13, 2017 3:38 PM
>To: edk2-devel@lists.01.org
>Cc: Gao, Liming <liming.gao@intel.com>
>Subject: [edk2] [Patch] BaseTools: Copy "MODULE_UNI_FILE" file into
>OUTPUT directory
>
>Current the "MODULE_UNI_FILE" item defined in the [Defines] section will
>be copied into As Built INF file, but tool doesn't copy the real file into
>same directory with the As Built INF file.
>
>Cc: Liming Gao <liming.gao@intel.com>
>Contributed-under: TianoCore Contribution Agreement 1.0
>Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
>---
> BaseTools/Source/Python/AutoGen/AutoGen.py | 5 +++++
> 1 file changed, 5 insertions(+)
>
>diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py
>b/BaseTools/Source/Python/AutoGen/AutoGen.py
>index c18802f..62b93b7 100644
>--- a/BaseTools/Source/Python/AutoGen/AutoGen.py
>+++ b/BaseTools/Source/Python/AutoGen/AutoGen.py
>@@ -3878,10 +3878,15 @@ class ModuleAutoGen(AutoGen):
>           'guid_item'                         : [],
>           'flags_item'                        : [],
>           'libraryclasses_item'               : []
>         }
>
>+        if 'MODULE_UNI_FILE' in MDefs:
>+            UNIFile = os.path.join(self.MetaFile.Dir, MDefs['MODULE_UNI_FILE'])
>+            if os.path.isfile(UNIFile):
>+                shutil.copy2(UNIFile, self.OutputDir)
>+
>         if self.AutoGenVersion > int(gInfSpecVersion, 0):
>             AsBuiltInfDict['module_inf_version'] = '0x%08x' % self.AutoGenVersion
>         else:
>             AsBuiltInfDict['module_inf_version'] = gInfSpecVersion
>
>--
>2.6.1.windows.1
>
>_______________________________________________
>edk2-devel mailing list
>edk2-devel@lists.01.org
>https://lists.01.org/mailman/listinfo/edk2-devel
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel