Hi, all.<br><br>Can someone tell me how to get boot=on parameter to appear on my kvm cmdline?<br>I define domain with the following xml<br><br><domain type="kvm"><br>  <name>kvm-1</name><br>  <memory>524288</memory><br>
  <vcpu>1</vcpu><br>  <os><br>    <type arch="x86_64" machine="pc">hvm</type><br>    <boot dev="hd"/><br>  </os><br>  <devices><br>    <emulator>/usr/bin/kvm</emulator><br>
    <graphics type="vnc" port="-1"/><br>    <disk device="disk" type="file"><br>      <source file="test.img"/><br>      <target dev="sda"/><br>
    </disk><br>    <interface type="bridge"><br>      <source bridge="breth0"/><br>    </interface><br>  </devices><br></domain><br><br>and get<br><br>/usr/bin/kvm -S -M pc -m 512 -smp 1 -name kvm-1 -uuid b462e575-4044-146c-193a-9a70523b4258 -monitor pty -no-acpi -boot c -drive file=test.img,if=scsi,index=0 -net nic,macaddr=52:54:00:09:9b:19,vlan=0 -net tap,fd=15,vlan=0 -serial none -parallel none -usb<br>
<br>But I want to get<br> -drive file=test.img,if=scsi,index=0,boot=on<br>instead.<br>