Removed xf86-video-vmware as it's been dropped: https://gitlab.archlinux.org/archlinux/packaging/packages/xf86-video-vmware/-/issues/3 (#3590)
This commit is contained in:
parent
12c8a5c62e
commit
2038e68560
|
|
@ -51,7 +51,6 @@ class GfxPackage(Enum):
|
||||||
Xf86VideoAmdgpu = 'xf86-video-amdgpu'
|
Xf86VideoAmdgpu = 'xf86-video-amdgpu'
|
||||||
Xf86VideoAti = 'xf86-video-ati'
|
Xf86VideoAti = 'xf86-video-ati'
|
||||||
Xf86VideoNouveau = 'xf86-video-nouveau'
|
Xf86VideoNouveau = 'xf86-video-nouveau'
|
||||||
Xf86VideoVmware = 'xf86-video-vmware'
|
|
||||||
XorgServer = 'xorg-server'
|
XorgServer = 'xorg-server'
|
||||||
XorgXinit = 'xorg-xinit'
|
XorgXinit = 'xorg-xinit'
|
||||||
|
|
||||||
|
|
@ -63,7 +62,7 @@ class GfxDriver(Enum):
|
||||||
NvidiaOpenKernel = 'Nvidia (open kernel module for newer GPUs, Turing+)'
|
NvidiaOpenKernel = 'Nvidia (open kernel module for newer GPUs, Turing+)'
|
||||||
NvidiaOpenSource = 'Nvidia (open-source nouveau driver)'
|
NvidiaOpenSource = 'Nvidia (open-source nouveau driver)'
|
||||||
NvidiaProprietary = 'Nvidia (proprietary)'
|
NvidiaProprietary = 'Nvidia (proprietary)'
|
||||||
VMOpenSource = 'VMware / VirtualBox (open-source)'
|
VMOpenSource = 'VirtualBox (open-source)'
|
||||||
|
|
||||||
def is_nvidia(self) -> bool:
|
def is_nvidia(self) -> bool:
|
||||||
match self:
|
match self:
|
||||||
|
|
@ -91,7 +90,6 @@ class GfxDriver(Enum):
|
||||||
GfxPackage.Xf86VideoAmdgpu,
|
GfxPackage.Xf86VideoAmdgpu,
|
||||||
GfxPackage.Xf86VideoAti,
|
GfxPackage.Xf86VideoAti,
|
||||||
GfxPackage.Xf86VideoNouveau,
|
GfxPackage.Xf86VideoNouveau,
|
||||||
GfxPackage.Xf86VideoVmware,
|
|
||||||
GfxPackage.LibvaMesaDriver,
|
GfxPackage.LibvaMesaDriver,
|
||||||
GfxPackage.LibvaIntelDriver,
|
GfxPackage.LibvaIntelDriver,
|
||||||
GfxPackage.IntelMediaDriver,
|
GfxPackage.IntelMediaDriver,
|
||||||
|
|
@ -136,7 +134,6 @@ class GfxDriver(Enum):
|
||||||
case GfxDriver.VMOpenSource:
|
case GfxDriver.VMOpenSource:
|
||||||
packages += [
|
packages += [
|
||||||
GfxPackage.Mesa,
|
GfxPackage.Mesa,
|
||||||
GfxPackage.Xf86VideoVmware,
|
|
||||||
]
|
]
|
||||||
|
|
||||||
return packages
|
return packages
|
||||||
|
|
|
||||||
10
schema.json
10
schema.json
|
|
@ -83,7 +83,7 @@
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"nics": [
|
"nics": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"iface": "string",
|
"iface": "string",
|
||||||
|
|
@ -97,7 +97,7 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -175,7 +175,7 @@
|
||||||
"description": "Graphics Drivers to install if a desktop profile is used, ignored otherwise.",
|
"description": "Graphics Drivers to install if a desktop profile is used, ignored otherwise.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"VMware / VirtualBox (open-source)",
|
"VirtualBox (open-source)",
|
||||||
"Intel (open-source)",
|
"Intel (open-source)",
|
||||||
"AMD / ATI (open-source)",
|
"AMD / ATI (open-source)",
|
||||||
"All open-source (default)",
|
"All open-source (default)",
|
||||||
|
|
@ -222,7 +222,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"required": [
|
"required": {
|
||||||
"!users": {
|
"!users": {
|
||||||
"description": "User account",
|
"description": "User account",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"sudo": "boolean"
|
"sudo": "boolean"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue