[Title] emulator-manager : change vm cpu type
authorjihye kim <jihye1128.kim@samsung.com>
Fri, 2 Nov 2012 07:56:23 +0000 (16:56 +0900)
committerjihye kim <jihye1128.kim@samsung.com>
Fri, 2 Nov 2012 07:56:23 +0000 (16:56 +0900)
[Desc.] arm -> ARM
[Issue] N/A

src/org/tizen/emulator/manager/image/BaseImage.java

index ced94b6..465a11c 100644 (file)
@@ -87,6 +87,9 @@ public class BaseImage {
                                domain          = prop.getProperty(StringResource.PRODUCT_DOMAIN, "Phone");
                                cpu                     = prop.getProperty(StringResource.TARGET_CPU, "x86");
                                cpu = cpu.toLowerCase();
+                               if (cpu.equals("arm")) {
+                                       cpu = cpu.toUpperCase();
+                               }
                                release         = prop.getProperty(StringResource.RELEASE_VERSION, "Not identified");
                        } else {
                                throw new Exception("This file does not exist (" + path + ")");