[Libguestfs] [v2v PATCH 2/2] linux: ignore -devel kernel packages

Richard W.M. Jones rjones at redhat.com
Tue Sep 22 19:55:01 UTC 2020


On Tue, Sep 22, 2020 at 07:00:45PM +0200, Pino Toscano wrote:
> They usually contain only the sources of the kernel, useful to build
> kernel modules.
> ---
>  v2v/linux_kernels.ml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/v2v/linux_kernels.ml b/v2v/linux_kernels.ml
> index dc0c285d..9a41225a 100644
> --- a/v2v/linux_kernels.ml
> +++ b/v2v/linux_kernels.ml
> @@ -92,7 +92,7 @@ let detect_kernels (g : G.guestfs) inspect family bootloader =
>      let kernel_pkgs = List.filter (
>        fun { G.app2_name = name } ->
>          name = "kernel"
> -          || String.is_prefix name "kernel-"
> +          || (String.is_prefix name "kernel-" && not (String.is_suffix name "-devel"))
>            || String.is_prefix name "linux-image-"

ACK series.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine.  Supports Linux and Windows.
http://people.redhat.com/~rjones/virt-df/




More information about the Libguestfs mailing list