Displaying 12 results from an estimated 12 matches for "imagehandl".
Did you mean:
image_handle
2006 Aug 08
11
architecture-specific stuff in xend
Hi Ewan, I''m almost ready to integrate some PPC-specific stuff into
xend, and I was wondering if you had a plan for how that should work.
First example: the device tree data structure we talked about a few
weeks ago. We will need to pass the config data to PPC code, probably in
XendDomainInfo.initDomain(), and then pass the resulting data structure
into libxc''s xc_linux_load()
2006 Jul 26
0
[PATCH] [HVM] enable sound card support for qemu
...#-----------------------------------------------------------------------------
diff -r 2abb1c801ab7 tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py Wed Jul 19 16:09:59 2006 +0800
+++ b/tools/python/xen/xend/image.py Thu Jul 20 21:19:07 2006 +0800
@@ -249,7 +249,7 @@ class HVMImageHandler(ImageHandler):
# Return a list of cmd line args to the device models based on the
# xm config file
def parseDeviceModelArgs(self, imageConfig, deviceConfig):
- dmargs = [ ''cdrom'', ''boot'', ''fda'', ''fdb'', &...
2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...hon/xen/xend/image.py Wed Nov 28 13:36:56 2007 +0000
+++ b/tools/python/xen/xend/image.py Wed Nov 28 09:48:59 2007 -0700
@@ -22,6 +22,7 @@ import math
import math
import time
import signal
+import struct
import xen.lowlevel.xc
from xen.xend.XendConstants import *
@@ -426,6 +427,7 @@ class HVMImageHandler(ImageHandler):
self.apic = int(vmConfig[''platform''].get(''apic'', 0))
self.acpi = int(vmConfig[''platform''].get(''acpi'', 0))
+ self.guest_os_type = vmConfig[''platform''].get(''g...
2008 Feb 04
3
[PATH] ioemu: use SIGHUP instead of SIGKILL
...without
core).
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r 2407a61c0d30 tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py Mon Feb 04 11:04:13 2008 +0000
+++ b/tools/python/xen/xend/image.py Mon Feb 04 11:04:32 2008 +0000
@@ -329,7 +329,7 @@ class ImageHandler:
return
if self.pid:
try:
- os.kill(self.pid, signal.SIGKILL)
+ os.kill(self.pid, signal.SIGHUP)
except OSError, exn:
log.exception(exn)
try:
______________________________________________...
2008 Jul 26
0
Bug in xen-utils-unstable
...39) ramdisk = /boot/vmlinuz-2.6.18-6-xen-amd64 ? weird ?
[2008-07-26 11:17:23 2890] DEBUG (image:640) vcpus = 1
[2008-07-26 11:17:23 2890] DEBUG (image:641) features =
...
[quickfix, hardcoding in /usr/lib/xen-unstable/lib/python/xen/xend/image.py]
class LinuxImageHandler(ImageHandler):
...
self.ramdisk = "/boot/initrd.img-2.6.18-6-xen-amd64"
log.debug("ramdisk = %s (david quickfix)", self.ramdisk)
...
Some field must be badly passed to some function somewhere. I?m not used to python
Best :)
David Denis
davi...
2008 Aug 26
0
[PATCH] xend: fix LinuxImageHandler debugging output
xend: fix LinuxImageHandler debugging output
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r c2472ded5c7c tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py Tue Aug 26 15:16:57 2008 +0100
+++ b/tools/python/xen/xend/image.py Tue Aug 26 17:06:09 2008 +0100
@@ -637,8 +637,9 @@ c...
2008 Feb 27
0
PATCH: Make QEMU send logs to stderr
...ze && !nographic && vnc_display == NULL && vncunused == 0) {
diff -r 2a8eaba24bf0 tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py Tue Feb 26 15:11:51 2008 +0000
+++ b/tools/python/xen/xend/image.py Wed Feb 27 15:26:53 2008 -0500
@@ -296,7 +296,34 @@ class ImageHandler:
{ ''dom'': self.vm.getDomid(), ''read'': True, ''write'': True })
log.info("spawning device models: %s %s", self.device_model, args)
# keep track of pid and spawned options to kill it later
-...
2006 Sep 26
15
RE: Individual passwords for guest VNC servers ?
> Thanks all point about security, I''ll do as follows.
> I thought that the point was the following two.
>
>
> 1. Storage place of encrypted password
> Should I store it in /etc/xen/passwd ?
> Or, should I wait for DB of Xen that will be released in
> the future?
The xend life cycle management patches were posted by Alistair a couple
of months back.
2006 Oct 25
4
[PATCH][VNC Auth] Fix qemu-dm becomes defunct when rebooting hvm domain
...atch corrects above.
Regards,
Masami
------------------------------------
diff -r a661566745ae tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py Tue Oct 24 16:46:02 2006 +0100
+++ b/tools/python/xen/xend/image.py Wed Oct 25 16:55:52 2006 +0900
@@ -395,9 +395,6 @@ class HVMImageHandler(ImageHandler):
if vncpasswd != '''':
self.vm.storeVm("vncpasswd", vncpasswd)
- # remove password
- config.remove([''vncpasswd'', vncpasswd_vmconfig])
-
return ret
def createDeviceModel(self):
---...
2007 Oct 24
16
PATCH 0/10: Merge PV framebuffer & console into QEMU
The following series of 10 patches is a merge of the xenfb and xenconsoled
functionality into the qemu-dm code. The general approach taken is to have
qemu-dm provide two machine types - one for xen paravirt, the other for
fullyvirt. For compatability the later is the default. The goals overall
are to kill LibVNCServer, remove alot of code duplication and/or parallel
impls of the same concepts, and
2007 Apr 13
0
[954] branches/wxruby2/wxwidgets_282: Additions to Image API 2.6 -> 2.8, remove comment cruft
...age formats, install the appropriate
</span><del>-handler with "Image#add_handler":image.html#Image_addhandler or
</del><ins>+handler with "Image#add_handler":image.html#Image_addhandler or call
</ins><span class="cx"> "InitAllImageHandlers":initallimagehandlers.html.
</span><span class="cx">
</span><span class="cx">
</span><span class="lines">@@ -45,6 +45,7 @@
</span><span class="cx"> |PCXHandler|For loading and saving (see below).|
<...
2005 Aug 09
43
Some patches.
Hi,
in my path of getting the controls sample to work nicely, I fixed some
classes on the way, see the attached diffs. I had some difficulties, but
could track down all stupid bugs and am now almost happy with the code
:)
(I had the complete ImageHandler hieracy implemented at some time, but
than I discovered the error was not in unloaded ImageHandlers but in the
controls-program which does not load the images correctly. *arrrg*)
OK, this are the patches:
wxruby-crlf.patch - There is some lineending cruft in some sorce files.
While this is not...