0001-Bug-510-added-virtio-disk-BUS-option-to-the-KVM-wiza.patch

Hector Sanjuan, 03/08/2011 03:52 PM

Download (1.24 KB)

View differences:

src/sunstone/public/js/one-ui_views.js
1258 1258
		$('select#boot_method option').removeAttr("selected");
1259 1259
        $('.kernel, .bootloader', $('div#os_boot_opts')).hide();
1260 1260

  
1261
        $('div#disks select#BUS').append(
1262
        '<option id="virtio" value="virtio">virtio</option>');
1263

  
1261 1264
		$('input#TYPE', section_raw).val("kvm");
1262 1265

  
1263 1266
		$(section_inputs).show();
......
1281 1284
        $('select#boot_method option#no_boot').html("Please choose");
1282 1285
		$('.kernel, .bootloader', $('div#os_boot_opts')).hide();
1283 1286

  
1287
        $('div#disks select#BUS option#virtio').remove();
1284 1288

  
1285 1289
		$('input#TYPE', section_raw).val("kvm");
1286 1290
		$(section_inputs).hide(); //not present for xen
1287
-