1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

Bug : Fixed OS section generation in the wizards. Fixed x86_64 typo in arch options .

This commit is contained in:
Hector Sanjuan 2011-03-07 16:06:29 +01:00 committed by Jaime Melis
parent 394fe78bb7
commit e1f07c3bd4
2 changed files with 3 additions and 2 deletions

@ -1856,7 +1856,8 @@ function createVMachineDialog(){
notifyError("There are mandatory fields missing in the OS Boot options section");
return false;
};
addSectionJSON(vm_json,scope);
vm_json["OS"] = {};
addSectionJSON(vm_json["OS"],scope);
//process disks
scope = section_disks;

@ -392,7 +392,7 @@ var create_vm_tmpl =
<label for="ARCH">Architecture:</label>\
<select id="ARCH" name="arch">\
<option value="i686">i686</option>\
<option value="x86-64">x86-64</option>\
<option value="x86_64">x86_64</option>\
</select>\
<div class="tip">CPU architecture to virtualization</div>\
</div>\