aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_load_aout9.c
Commit message (Collapse)AuthorAgeFilesLines
* [TOOLS] Remove plan9 loader code. Latest plan9 port uses linux builder.kfraser@dhcp93.uk.xensource.com2006-06-271-178/+0
| | | | | Signed-off-by: Keir Fraser <keir@xensource.com>
* Represent PFNs with their own type, rather than 'unsigned long'.kaf24@firebug.cl.cam.ac.uk2006-06-061-2/+2
| | | | | | ('long' changes size and alignment between 32- and 64-bit ABIs.) Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
* Fix whitespace in libxc. Tabs are manually fixed.kaf24@firebug.cl.cam.ac.uk2006-04-151-4/+4
| | | | | | | | Trailing whitespace removed with: perl -p -i -e 's/\s+$/\n/g' tools/libxc/*.[ch] Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
* Clean up internal libxc functions to take 'const char *'kaf24@firebug.cl.cam.ac.uk2006-03-091-10/+9
| | | | | | | | parameters where possible, to avoid unnecessary casts. Signed-off-by: Keir Fraser <keir@xensource.com>
* Fix Xen public interfaces and the tools to consistentlykaf24@firebug.cl.cam.ac.uk2005-10-121-9/+9
| | | | | | | | use stdint-format bitsize types (uint32_t and friends). Signed-off-by: Keir Fraser <keir@xensource.com>
* Re-indent libxc to avoid hard tabs. Also, fix the PAEkaf24@firebug.cl.cam.ac.uk2005-09-191-5/+14
| | | | | | | | | domain builder to correctly write PTEs that map pages above 4GB. Signed-off-by: Keir Fraser <keir@xensource.com>
* Small plan9 loader patch from Tim Newsham.kaf24@firebug.cl.cam.ac.uk2005-09-071-12/+10
|
* This patch adjusts the plan9 loader to start "physical" ram atkaf24@firebug.cl.cam.ac.uk2005-08-311-7/+10
| | | | | | | | | 0x80000000 virtual rather than the virtual address of the kernel image (which is higher). Tim Newsham
* Break the building/save/restore code out into a separate library libxenguest.cl349@firebug.cl.cam.ac.uk2005-08-251-1/+1
| | | | | | | Also update the tools accordingly. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
* bitkeeper revision 1.1754 (42bc7207le_rYvV9kj8p-Dztt3T_eA)kaf24@firebug.cl.cam.ac.uk2005-06-241-8/+11
| | | | | Fix signedness issues, found by Jerone Young.
* bitkeeper revision 1.1752 (42bbe5ba5hLPfcw1f77_F22fq6v6Yw)kaf24@firebug.cl.cam.ac.uk2005-06-241-0/+166
The set of patches below add support for loading plan9's a.out format using the linux builder. This is considerably simpler than having a seperate builder, shares more code and should be easier to maintain. Hopefully the original plan9 builder can go away in the future. I've been able to test this manually with vm-tools but am still having some problems (unrelated I think) with xm. Signed-off-by: Tim Newsham <newsham@lava.net>