...
The supplied hotplug script (vif-bridge in /etc/xen/scripts/) is being called with vif$VIF_ID-emu instead of vif$VIF_ID where $VIF_ID starts at zero and increments every time and instance requests a VIF. Currently, the "-emu" part is being removed by sed. It is not 100% clear why the -emu is being appended.
HVMLOADER not loading ROMS...no video
The ROM loading was being skipped due to a missing xenstore value.
Code Block | ||
---|---|---|
| ||
let local_stuff = [
"serial/0/limit", string_of_int 65536;
"console/limit", string_of_int 65536;
"console/port", string_of_int console_port;
"console/ring-ref", sprintf "%nu" console_mfn;
"hvmloader/bios", "seabios";
"hvmloader/seabios-legacy-load-roms", "1"; <--- that guy
] in
|