mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
RHEL 8: p2v: ignore 'rhv-upload' driver (RHBZ#1590220)
The 'rhv-upload' output mode requires few options, and virt-p2v does not have the GUI bits for specifying them.
This commit is contained in:
@@ -1021,8 +1021,12 @@ add_input_driver (const char *name, size_t len)
|
||||
static void
|
||||
add_output_driver (const char *name, size_t len)
|
||||
{
|
||||
/* Ignore the 'vdsm' driver, since that should only be used by VDSM. */
|
||||
if (len != 4 || memcmp (name, "vdsm", 4) != 0)
|
||||
/* Ignore the 'vdsm' driver, since that should only be used by VDSM.
|
||||
* Ignore the 'rhv-upload' driver, since we do not support passing all the
|
||||
* options for it.
|
||||
*/
|
||||
if ((len != 4 || memcmp (name, "vdsm", 4) != 0) &&
|
||||
(len != 10 || memcmp (name, "rhv-upload", 10) != 0))
|
||||
add_option ("output", &output_drivers, name, len);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user