search for: update_display_driv

Displaying 6 results from an estimated 6 matches for "update_display_driv".

Did you mean: update_display_driver
2010 May 11
1
[PATCH] GuestOS: Update XF86Config or xorg.conf as appropriate
...#39;/etc/X11/XF86Config'); + $self->{xorg} = '/etc/X11/XF86Config'; + } else { + $self->{xorg} = '/etc/X11/xorg.conf'; + } + # Make augeas pick up the new configuration $g->aug_load(); }; @@ -287,7 +298,7 @@ sub update_display_driver # Update the display driver if it exists eval { foreach my $path - ($g->aug_match('/files/etc/X11/xorg.conf/Device/Driver')) + ($g->aug_match('/files'.$self->{xorg}.'/Device/Driver')) { $g->aug_set(...
2010 May 13
1
[PATCH] Improve augeas error reporting
...# Propagate augeas errors - die($@) if($@); + $self->_augeas_error($@) if ($@); } =item disable_kernel_module(device) @@ -275,7 +328,7 @@ sub disable_kernel_module }; # Propagate augeas errors - die($@) if($@); + $self->_augeas_error($@) if ($@); } =item update_display_driver(driver) @@ -303,7 +356,7 @@ sub update_display_driver }; # Propagate augeas errors - die($@) if($@); + $self->_augeas_error($@) if ($@); } # We can't rely on the index in the augeas path because it will change if @@ -333,7 +386,7 @@ sub _check_augeas_device };...
2010 Feb 18
1
[PATCH] Converter: Remove argument checking from internal functions
...e_display_driver { my ($guestos, $virtio) = @_; - die("configure_display_driver called without guestos argument") - unless defined($guestos); - die("configure_display_driver called without virtio argument") - unless defined($virtio); $guestos->update_display_driver("cirrus"); } @@ -246,10 +228,6 @@ sub _configure_display_driver sub _configure_kernel { my ($guestos, $desc) = @_; - die("configure_kernel called without guestos argument") - unless defined($guestos); - die("configure_kernel called without desc argume...
2010 Sep 13
3
[PATCH 1/4] Check that we're not overwriting an existing Libvirt domain
Exit with an error if we would overwrite an existing libvirt domain. Fixes RHBZ#617110 --- lib/Sys/VirtV2V/Connection/LibVirt.pm | 4 ++++ lib/Sys/VirtV2V/Target/LibVirt.pm | 31 ++++++++++++++++++++++++++++++- lib/Sys/VirtV2V/Target/RHEV.pm | 11 +++++++++++ 3 files changed, 45 insertions(+), 1 deletions(-) diff --git a/lib/Sys/VirtV2V/Connection/LibVirt.pm
2010 Jul 28
3
Create new Sys::VirtV2V::Util
These 2 patches are mostly code motion. They were prompted by an apparent augeas error in BZ 613967 which didn't display useful error message. The error seems to happen in Converter::Linux. GuestOS::RedHat had a handy function which displayed verbose augeas error messages. This function moves into the new module where it can be used by both modules. The second patch is an consequential tidy
2010 May 19
8
RHN support and capabilities
This patch series includes a repost of Milan's unmodified RHN support patch because I haven't pushed it yet. On top of that patch, it includes the capabilities patch in as many bits as I could make it into. The big one is 7/8. I've tested all of the following guests both with and without RHN registration: Xen RHEL 54 PV Xen RHEL 51 PV Xen RHEL 48 PV ESX RHEL 54 FV