Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-10 11:37:04 -0400
committerGitHub <noreply@github.com>2021-04-10 11:37:04 -0400
commitd510ad5b989dabc2a4cb7b622a000ff2146f325b (patch)
tree73a4159043b0887740027bd797f412df117adff8 /profiles
parent3d659dead8cf06e71ad9c36db1abec3f22335414 (diff)
Delete wayland.py
Diffstat (limited to 'profiles')
-rw-r--r--profiles/wayland.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/profiles/wayland.py b/profiles/wayland.py
deleted file mode 100644
index 8edae3c2..00000000
--- a/profiles/wayland.py
+++ /dev/null
@@ -1,43 +0,0 @@
-import archinstall, os
-
-AVAILABLE_DRIVERS = {
- # Sub-dicts are layer-2 options to be selected
- # and lists are a list of packages to be installed
- 'AMD / ATI' : {
- 'amd' : ['xf86-video-amdgpu'],
- 'ati' : ['xf86-video-ati']
- },
- 'intel' : ['xf86-video-intel'],
- 'nvidia' : {
- 'open source' : ['xf86-video-nouveau'],
- 'proprietary' : ['nvidia']
- },
- 'mesa' : ['mesa'],
- 'fbdev' : ['xf86-video-fbdev'],
- 'vesa' : ['xf86-video-vesa'],
- 'vmware' : ['xf86-video-vmware']
-}
-
-
-def _prep_function(*args, **kwargs):
- """
- Magic function called by the importing installer
- before continuing any further. It also avoids executing any
- other code in this stage. So it's a safe way to ask the user
- for more input before any other installer steps start.
- """
- print('You need to select which graphics card you\'re using.')
- print('This in order to setup the required graphics drivers.')
-
- __builtins__['_gfx_driver_packages'] = archinstall.lib.gfx_drivers.select_driver(AVAILABLE_DRIVERS)
-
- # TODO: Add language section and/or merge it with the locale selected
- # earlier in for instance guided.py installer.
-
- return True
-
-if __name__ == "__wayland__":
- try:
- installation.add_additional_packages(f"wayland {' '.join(_gfx_driver_packages)}")
- except:
- installation.add_additional_packages(f"wayland") # Prep didn't run, so there's no driver to install \ No newline at end of file