search for: _install_good_kernel

Displaying 3 results from an estimated 3 matches for "_install_good_kernel".

Did you mean: install_good_kernel
2011 Jan 20
1
[PATCH] Don't remove foreign kernels during conversion
...rnels)); + # Skip foreign kernels + next if _is_hv_kernel($g, $kernel); # If we're configuring virtio, check this kernel supports it next if ($virtio && !_supports_virtio($kernel, $g)); @@ -570,18 +560,11 @@ sub _configure_kernel $boot_kernel = _install_good_kernel($g, $config, $desc, $dom); } - # Check we have a bootable kernel. If we don't, we're probably about to - # remove all kernels, which will fail unpleasantly. Fail nicely instead. + # Check we have a bootable kernel. die(user_message(__"No bootable kernels installed,...
2011 Mar 11
2
[PATCH 1/2] Allow reading more data than the reported size of a volume
If a volume is not an exact multiple of 512 bytes, qemu-img will report its size rounded down to a 512 byte boundary. However, when copying, the file is still read until EOF, which will return more data than was expected. This change prevents that causing a failure in itself. The situation is still not resolved, however, as there are still situations where this will cause a failure. For example,
2011 Apr 26
7
[PATCH 1/7] Push $desc creation into Sys::VirtConvert::Converter->convert
This change is part of an ongoing effort to remove use of $desc and inspect the OS directly as required during conversion. --- lib/Sys/VirtConvert/Connection/LibVirtTarget.pm | 4 +- lib/Sys/VirtConvert/Connection/RHEVTarget.pm | 41 +++++++++--------- lib/Sys/VirtConvert/Converter.pm | 35 ++++++++++++---- lib/Sys/VirtConvert/Converter/RedHat.pm | 45