Displaying 5 results from an estimated 5 matches for "get_default_kernel".
Did you mean:
set_default_kernel
2009 Dec 16
1
[PATCH] HVTarget: trivial NFC code cleanup
...b/lib/Sys/VirtV2V/HVTarget/Linux.pm
index 53784ea..dc546de 100644
--- a/lib/Sys/VirtV2V/HVTarget/Linux.pm
+++ b/lib/Sys/VirtV2V/HVTarget/Linux.pm
@@ -349,7 +349,7 @@ sub _configure_kernel
}
# If we didn't install a new kernel, pick the default kernel
- $boot_kernel = $guestos->get_default_kernel() if(!defined($boot_kernel));
+ $boot_kernel ||= $guestos->get_default_kernel();
return $boot_kernel;
}
--
1.6.5.2
2010 Feb 18
2
[PATCH 1/2] ESX: Look harder for potential transfer failures
Although I can't reproduce, I seem to have had an incomplete transfer which
wasn't picked up by the existing error handling. This change adds some more
sanity checks:
* Check for error on close() (should have been doing this anyway)
* Check that the bytes received == reported content length
---
lib/Sys/VirtV2V/Transfer/ESX.pm | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1
2010 May 07
1
[PATCH] Check a grub kernel exists before selecting it
...++++++++-------------------
1 files changed, 22 insertions(+), 24 deletions(-)
diff --git a/lib/Sys/VirtV2V/GuestOS/RedHat.pm b/lib/Sys/VirtV2V/GuestOS/RedHat.pm
index 77d9332..10ff77d 100644
--- a/lib/Sys/VirtV2V/GuestOS/RedHat.pm
+++ b/lib/Sys/VirtV2V/GuestOS/RedHat.pm
@@ -350,39 +350,37 @@ sub get_default_kernel
$default = $g->aug_get('/files/boot/grub/menu.lst/default');
};
+ # Get the grub filesystem
+ my $grub = $self->{desc}->{boot}->{grub_fs};
+
+ # Look for a kernel, starting with the default
+ my @paths;
+ push(@paths, $g->aug_match("/files/...
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
2010 May 13
1
[PATCH] Improve augeas error reporting
...r($@) 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
};
# Propagate augeas errors
- die($@) if($@);
+ $self->_augeas_error($@) if ($@);
return $augeas;
}
@@ -355,19 +408,28 @@ sub get_default_kernel
eval {
$default = $g->aug_get('/files/boot/grub/menu.lst/default');
};
+ # Doesn't matter if get fails
# Get the grub filesystem
my $grub = $self->{desc}->{boot}->{grub_fs};
# Look for a kernel, starting with the default
my @path...