Skip to content

Commit

Permalink
4.x ARM machine type needs a value
Browse files Browse the repository at this point in the history
  • Loading branch information
limboemu committed Jan 6, 2019
1 parent 2e84c55 commit c58788d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int

if (!machineLoaded) {
if(currMachine.machine_type==null)
currMachine.machine_type = "Default";
currMachine.machine_type = "versatilepb";
populateMachineType(currMachine.machine_type);
if(currMachine.cpu==null)
currMachine.cpu = "Default";
Expand Down Expand Up @@ -2408,7 +2408,7 @@ private void createMachine(String machineValue) {
currMachine.disabletsc = 1;
} else if (Config.enable_ARM || Config.enable_ARM64) {
currMachine.arch = "ARM";
currMachine.machine_type = "Default";
currMachine.machine_type = "versatilepb";
currMachine.cpu = "Default";
currMachine.nic_card = "Default";
} else if (Config.enable_MIPS) {
Expand Down

0 comments on commit c58788d

Please sign in to comment.