search for: alt_family

Displaying 4 results from an estimated 4 matches for "alt_family".

Did you mean: ai_family
2020 Aug 25
2
Re: [PATCH v2v] Add ALT support
...l Gordeev <obirvalger@altlinux.org> > It would be nicer to have few more details in the commit message and/or comments in the code, as there are things that definitely deserve explanations. Also, IMHO, it would be nice to have it split in different parts: 1) a simple patch that adds the ALT_family, in case it is needed (see below why IMHO it might not be) 2) a simple patch adding the distro in the register_convert_module matching function, and mentioning it in the documentation 3) the patch for the initrd work needed 4) the patch (if needed, see below) for the vmware tools libraries A...
2020 Aug 24
2
[PATCH v2v] Add ALT support
Patch supplied by Mikhail Gordeev, posting for review. I have compile tested it and checked the code and it looks all fine to me, so ACK from my point of view. I did not actually run it because I don't have an ALT Linux install, but it doesn't seem as if it would affect any other distro. Rich.
2020 Aug 24
0
[PATCH v2v] Add ALT support
...isks output rcaps _ = | "rhel" | "centos" | "scientificlinux" | "redhat-based" | "oraclelinux" -> `RHEL_family | "sles" | "suse-based" | "opensuse" -> `SUSE_family + | "altlinux" -> `ALT_family | "debian" | "ubuntu" | "linuxmint" | "kalilinux" -> `Debian_family | _ -> assert false in @@ -372,6 +373,9 @@ let convert (g : G.guestfs) inspect source_disks output rcaps _ = ); ) libraries ) + else if fam...
2020 Aug 25
0
Re: [PATCH v2v] Add ALT support
Split code to patches, as suggested. Now there is no need for ALT_family in the code. But the code that checking family fails without adding it. ALT is not RHEL nor Debian based distro, so what family should be used if not adding ALT_family? I wrongly asumed that modules should be added to existing initrd instead of recreation. Now the part of code creating initrd is m...