fsdetails: Drop driver="handle" UI
It was removed in qemu 4.0.0 Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
parent
2b864a9294
commit
b7b75ab8fc
|
@ -100,8 +100,7 @@ class vmmFSDetails(vmmGObjectUI):
|
|||
|
||||
drivers = []
|
||||
if self.conn.is_qemu() or self.conn.is_test():
|
||||
drivers += [DeviceFilesystem.DRIVER_PATH,
|
||||
DeviceFilesystem.DRIVER_HANDLE]
|
||||
drivers += [DeviceFilesystem.DRIVER_PATH]
|
||||
if self.conn.is_lxc() or self.conn.is_test():
|
||||
drivers += [DeviceFilesystem.DRIVER_LOOP,
|
||||
DeviceFilesystem.DRIVER_NBD]
|
||||
|
|
|
@ -25,7 +25,6 @@ class DeviceFilesystem(Device):
|
|||
MODES = [MODE_PASSTHROUGH, MODE_MAPPED, MODE_SQUASH]
|
||||
|
||||
DRIVER_PATH = "path"
|
||||
DRIVER_HANDLE = "handle"
|
||||
DRIVER_LOOP = "loop"
|
||||
DRIVER_NBD = "nbd"
|
||||
|
||||
|
|
Loading…
Reference in New Issue