summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-14 06:47:58 +0000
committeralfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-14 06:47:58 +0000
commit7b086bab60be422ae5417d3c801356aa162ab6f9 (patch)
tree819c773fc25cd8118c3f3024dc437cb8b76b0eb2
parentfb840aa8f7471de18152ed8531a862033e21a56f (diff)
downloadedk2-7b086bab60be422ae5417d3c801356aa162ab6f9.zip
edk2-7b086bab60be422ae5417d3c801356aa162ab6f9.tar.gz
edk2-7b086bab60be422ae5417d3c801356aa162ab6f9.tar.bz2
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1251 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java b/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
index e40b5f8..3576578 100644
--- a/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
+++ b/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
@@ -71,6 +71,10 @@ public class ModuleInfo {
} else if (list[i].contains(".h") || list[i].contains(".H")) {
localmodulesources.add(list[i]);
localmoduleheaders.add(list[i]); //the case that several .inf or .msa found is not concerned
+ } else if (list[i].contains(".dxs")) {
+ localmodulesources.add(list[i]);
+ } else if (list[i].contains(".uni")) {
+ localmodulesources.add(list[i]);
} else if (list[i].contains(".inf")) {
if (ui.yesOrNo("Found .inf file : " + list[i] + "\nUse this file as this module's .inf ?")) {
hasInf = true;