Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions archinstall/lib/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ class GfxPackage(Enum):
Xf86VideoAmdgpu = 'xf86-video-amdgpu'
Xf86VideoAti = 'xf86-video-ati'
Xf86VideoNouveau = 'xf86-video-nouveau'
Xf86VideoVmware = 'xf86-video-vmware'
XorgServer = 'xorg-server'
XorgXinit = 'xorg-xinit'

Expand All @@ -63,7 +62,7 @@ class GfxDriver(Enum):
NvidiaOpenKernel = 'Nvidia (open kernel module for newer GPUs, Turing+)'
NvidiaOpenSource = 'Nvidia (open-source nouveau driver)'
NvidiaProprietary = 'Nvidia (proprietary)'
VMOpenSource = 'VMware / VirtualBox (open-source)'
VMOpenSource = 'VirtualBox (open-source)'

def is_nvidia(self) -> bool:
match self:
Expand Down Expand Up @@ -91,7 +90,6 @@ def gfx_packages(self) -> list[GfxPackage]:
GfxPackage.Xf86VideoAmdgpu,
GfxPackage.Xf86VideoAti,
GfxPackage.Xf86VideoNouveau,
GfxPackage.Xf86VideoVmware,
GfxPackage.LibvaMesaDriver,
GfxPackage.LibvaIntelDriver,
GfxPackage.IntelMediaDriver,
Expand Down Expand Up @@ -136,7 +134,6 @@ def gfx_packages(self) -> list[GfxPackage]:
case GfxDriver.VMOpenSource:
packages += [
GfxPackage.Mesa,
GfxPackage.Xf86VideoVmware,
]

return packages
Expand Down
10 changes: 5 additions & 5 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"type": "object",
"properties": {
"type": "string",
"nics": [
"nics": {
"type": "array",
"items": {
"iface": "string",
Expand All @@ -97,7 +97,7 @@
"type": "string"
}
}
]
}
}
}
},
Expand Down Expand Up @@ -175,7 +175,7 @@
"description": "Graphics Drivers to install if a desktop profile is used, ignored otherwise.",
"type": "string",
"enum": [
"VMware / VirtualBox (open-source)",
"VirtualBox (open-source)",
"Intel (open-source)",
"AMD / ATI (open-source)",
"All open-source (default)",
Expand Down Expand Up @@ -222,7 +222,7 @@
]
},
{
"required": [
"required": {
"!users": {
"description": "User account",
"type": "object",
Expand All @@ -232,7 +232,7 @@
"sudo": "boolean"
}
}
]
}
}
]
}