...
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 |
VHD Compatibility
Certain VHDs that were created with an upstream version of Xen cannot be used in current OpenXT. At least we think that is the case - really the only one is the CentOS VHD that was created at some point with some version of Xen tools. In general it is now believed that even though we change the VHD meta structures, our VHDs are still compatible. This is why:
Code Block | ||
---|---|---|
| ||
struct dd_batmap_hdr {
char cookie[8]; /* should contain "tdbatmap" */
u64 batmap_offset; /* byte offset to batmap */
u32 batmap_size; /* batmap size in sectors */
u32 batmap_version; /* version of batmap */
u32 checksum; /* batmap checksum -- 1's complement of batmap */
};
|
GDB and QEMU
Running QEMU in GDB has proven to be very helpful. Simply copy the gdb binaries (gdb, gdbserver, and gdbtui) on to your OpenXT machine and replace the /usr/lib/xen/bin/qemu-system-i386 script with:
...