diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-19 21:43:27 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-19 21:43:27 +0000 |
commit | 6959ee43bb668a4dfcfe878d1fd9a67c446e36ec (patch) | |
tree | 6c77ea19b68ad429ad4a1063bb679fa3c6b5df0f /Tools | |
parent | b030934bcd18bcf22e68320be2b1130900b1672c (diff) | |
download | edk2-platforms-6959ee43bb668a4dfcfe878d1fd9a67c446e36ec.tar.xz |
Fix capitalization
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@213 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
4 files changed, 8 insertions, 8 deletions
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FwImageTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FwImageTask.java index 6d6a3e5f89..19583b5c90 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FwImageTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FwImageTask.java @@ -68,9 +68,9 @@ public class FwImageTask extends Task implements EfiDefine{ String path = project.getProperty("env.Framework_Tools_Path");
String command;
if (path == null) {
- command = "fwimage";
+ command = "FwImage";
} else {
- command = path + "/" + "fwimage";
+ command = path + "/" + "FwImage";
}
//
// argument of tools
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenCRC32SectionTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenCRC32SectionTask.java index ca426dfa69..33115aa10f 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenCRC32SectionTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenCRC32SectionTask.java @@ -62,9 +62,9 @@ public class GenCRC32SectionTask extends Task implements EfiDefine{ String path = project.getProperty("env.Framework_Tools_Path");
String command;
if (path == null) {
- command = "gencrc32section";
+ command = "GenCRC32Section";
} else {
- command = path + "/" + "gencrc32section" ;
+ command = path + "/" + "GenCRC32Section" ;
}
//
// string line of input files
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenDepexTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenDepexTask.java index f49ea53350..871394585d 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenDepexTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenDepexTask.java @@ -54,9 +54,9 @@ public class GenDepexTask extends Task implements EfiDefine { String path = project.getProperty("env.Framework_Tools_Path");
String command;
if (path == null) {
- command = "gendepex";
+ command = "GenDepex";
} else {
- command = path + "/" + "gendepex";
+ command = path + "/" + "GenDepex";
}
//
// argument of GenDepex tool
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenSectionTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenSectionTask.java index 3d19c0888c..61aefa6efb 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenSectionTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenSectionTask.java @@ -61,9 +61,9 @@ public class GenSectionTask extends Task implements EfiDefine { //
String path = project.getProperty("env.Framework_Tools_Path");
if (path == null) {
- command = "gensection";
+ command = "GenSection";
} else {
- command = path + "/" + "gensection";
+ command = path + "/" + "GenSection";
}
//
// argument of tools
|