search for: gopt

Displaying 16 results from an estimated 16 matches for "gopt".

Did you mean: goat
2006 Jul 26
0
[PATCH] [HVM] enable sound card support for qemu
...!= None: v = int(v) if v: ret.append("-%s" % a) else: diff -r 2abb1c801ab7 tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Wed Jul 19 16:09:59 2006 +0800 +++ b/tools/python/xen/xm/create.py Thu Jul 20 21:19:07 2006 +0800 @@ -404,9 +404,9 @@ gopts.var(''nographic'', val=''no|yes'', fn=set_bool, default=0, use="Should device models use graphics?") -gopts.var(''audio'', val=''no|yes'', - fn=set_bool, default=0, - use="Shoul...
2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...tchn = self.vm.getStorePort() mem_mb = self.getRequiredInitialReservation() / 1024 diff -r c555a5f97982 tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Wed Nov 28 13:36:56 2007 +0000 +++ b/tools/python/xen/xm/create.py Wed Nov 28 09:48:59 2007 -0700 @@ -453,6 +453,10 @@ gopts.var(''usbdevice'', val=''NAME'', gopts.var(''usbdevice'', val=''NAME'', fn=set_value, default='''', use="Name of USB device to add?") + +gopts.var(''guest_os_type'', val...
2005 Aug 29
1
Previewing oggvorbis files in GNOME...
...ht that the reason that ogg files do not sound is because my version of sox may not have oggvorbis support, but this is not the case because I can play them using the "play" command easily at the command line. Also when I type "sox -h" I get: sox: Version 12.17.7 Usage: [ gopts ] [ fopts ] ifile [ fopts ] ofile [ effect [ effopts ] ] gopts: -e -h -p -v volume -V fopts: -r rate -c channels -s/-u/-U/-A/-a/-i/-g/-f -b/-w/-l/-d -x effect: avg band bandpass bandreject chorus compand copy dcshift deemph earwax echo echos fade filter flanger highp highpass lowp lowpass mask...
2007 Jun 07
0
[PATCH] Remove unimplemented xm migrate --resource option
...;'port'', ''int'']]) return fn(req.args, {''dom'': self.dom.domid}) diff --git a/tools/python/xen/xm/migrate.py b/tools/python/xen/xm/migrate.py --- a/tools/python/xen/xm/migrate.py +++ b/tools/python/xen/xm/migrate.py @@ -43,10 +43,6 @@ gopts.opt(''port'', short=''p'', val=''portnu fn=set_int, default=0, use="Use specified port for migration.") -gopts.opt(''resource'', short=''r'', val=''MBIT'', - fn=set_in...
2007 Dec 04
0
[PATCH] Fix help message of on_xend_stop
...be typo? Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com> Best regards, Kan diff -r 3057f813da14 tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Thu Nov 29 19:30:33 2007 +0000 +++ b/tools/python/xen/xm/create.py Tue Dec 04 13:42:20 2007 +0900 @@ -514,7 +514,7 @@ gopts.var(''on_xend_start'', val=''ignore|s fn=set_value, default=''ignore'', use=''Action to perform when xend starts'') -gopts.var(''on_xend_stop'', val=''continue|shutdown|suspend'', +gopts...
2006 Aug 02
10
[PATCH 0/6] htb: cleanup
The HTB scheduler code is a mess, this patch set does some basic house cleaning. The first four should cause no code change, but the last two need more testing. -- Stephen Hemminger <shemminger@osdl.org> "And in the Packet there writ down that doome" - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to
2008 Mar 18
0
[PATCH] vfb: Add opengl option
...a domain. --- a/tools/python/xen/xm/create.py Tue Mar 18 14:36:27 2008 +0000 +++ b/tools/python/xen/xm/create.py Tue Mar 18 15:16:47 2008 +0000 @@ -319,7 +319,7 @@ For example ''irq=7''. This option may be repeated to add more than one IRQ.""") -gopts.var(''vfb'', val="type={vnc,sdl},vncunused=1,vncdisplay=N,vnclisten=ADDR,display=DISPLAY,xauthority=XAUTHORITY,vncpasswd=PASSWORD", +gopts.var(''vfb'', val="type={vnc,sdl},vncunused=1,vncdisplay=N,vnclisten=ADDR,display=DISPLAY,xauthority=XAUTHORITY,v...
2011 Sep 13
1
sox: Failed reading obd-demo.mp3: Do not understand format type: mp3
...and requires access to either or both the external libmad and libmp3lame libraries. To see if there is support for Mp3 run sox -h and look for it under the list of supported file formats as "mp3". [root at host0040 ~]# sox -h sox: Version 12.18.1 Usage: [ gopts ] [ fopts ] ifile [ fopts ] ofile [ effect [ effopts ] ] gopts: -e -h -p -q -S -V fopts: -r rate -c channels -s/-u/-U/-A/-a/-i/-g/-f -b/-w/-l/-d -v volume -x effect: avg band bandpass bandreject chorus compand copy dcshift deemph earwax echo echos fade filter flanger highp highpass lowp lowpass...
2006 Jun 15
0
[PATCH 2/2] Runtime configuration of HTB''s HYSTERESIS option (userspace)
...;rta_len = (void *) NLMSG_TAIL(n) - (void *) tail; return 0; } static int htb_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) { - struct rtattr *tb[TCA_HTB_RTAB+1]; + struct rtattr *tb[TCA_HTB_MAX+1]; struct tc_htb_opt *hopt; + struct tc_htb_hopt *uhopt; struct tc_htb_glob *gopt; double buffer,cbuffer; SPRINT_BUF(b1); @@ -238,7 +245,7 @@ static int htb_print_opt(struct qdisc_ut if (opt == NULL) return 0; - parse_rtattr_nested(tb, TCA_HTB_RTAB, opt); + parse_rtattr_nested(tb, TCA_HTB_MAX, opt); if (tb[TCA_HTB_PARMS]) { @@ -278,6 +285,13 @@ static int htb_pr...
2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
...hg-dm-/tools/python/xen/xm/create.py 2006-06-30 15:41:37.000000000 -0600 +++ xen-unstable.hg-dm/tools/python/xen/xm/create.py 2006-07-12 14:40:59.000000000 -0600 @@ -102,7 +102,7 @@ fn=set_true, default=0, use="Connect to the console after the domain is created.") -gopts.var(''vncviewer'', val=''no|yes'', +gopts.var(''vncconnect'', val=''no|yes'', fn=set_bool, default=None, use="""Spawn a vncviewer listening for a vnc server in the domain. The address of...
2008 Aug 07
0
[PATCH] fix trivial typo. s/ciredump-restore/coredump-restart/
...a69bc tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Wed Aug 06 15:19:13 2008 +0100 +++ b/tools/python/xen/xm/create.py Thu Aug 07 12:31:56 2008 +0900 @@ -279,7 +279,7 @@ renamed and a new domain started in its place. """) -gopts.var(''on_crash'', val=''destroy|restart|preserve|rename-restart|coredump-destroy|ciredump-restart'', +gopts.var(''on_crash'', val=''destroy|restart|preserve|rename-restart|coredump-destroy|coredump-restart'', fn=set_value,...
2011 Sep 13
3
sox: Failed reading obd-demo.mp3: Do not understand format type: mp3
...and requires access to either or both the external libmad and libmp3lame libraries. To see if there is support for Mp3 run sox -h and look for it under the list of supported file formats as "mp3". [root at host0040 ~]# sox -h sox: Version 12.18.1 Usage: [ gopts ] [ fopts ] ifile [ fopts ] ofile [ effect [ effopts ] ] gopts: -e -h -p -q -S -V fopts: -r rate -c channels -s/-u/-U/-A/-a/-i/-g/-f -b/-w/-l/-d -v volume -x effect: avg band bandpass bandreject chorus compand copy dcshift deemph earwax echo echos fade filter flanger highp highpass lowp lowpass...
2010 Dec 12
5
Stripping silent periods from MP3s
...: GPL Description: SoX (Sound eXchange) is a sound file format converter SoX can convert : between many different digitized sound formats and perform simple : sound manipulation functions, including sound effects. [root at karsites ~]# sox -h sox: Version 12.18.1 Usage: [ gopts ] [ fopts ] ifile [ fopts ] ofile [ effect [ effopts ] ] gopts: -e -h -p -q -S -V fopts: -r rate -c channels -s/-u/-U/-A/-a/-i/-g/-f -b/-w/-l/-d -v volume -x effect: avg band bandpass bandreject chorus compand copy dcshift deemph earwax echo echos fade filter flanger highp highpass lowp lowpass...
2005 Dec 26
1
[PATCH] symmetricalization of system info command xm info, top, dmesg and log
...from xen.xend.XendClient import server info = server.xend_node() @@ -645,9 +647,12 @@ def xm_top(args): + arg_check(args, "top", 0) + os.execvp(''xentop'', [''xentop'']) def xm_dmesg(args): + arg_check(args, "dmesg", 0) gopts = Opts(use="""[-c|--clear] _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
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.
2005 Oct 10
13
[PATCH] 0/2 VCPU creation and allocation
I''ve put together two patches. The first introduces a new dom0_op, set_max_vcpus, which with an associated variable and a check in the VCPUOP handler fixes [1]bug 288. Also included is a new VCPUOP, VCPUOP_create, which handles all of the vcpu creation tasks and leaves initialization and unpausing to VCPUOP_initialize. The separation allows for build-time allocation of vcpus which