install gfx before DE/WM/Server (#4238)

This commit is contained in:
HADEON 2026-02-17 03:19:11 +01:00 committed by GitHub
parent 8edab9fafd
commit f736b8c4ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -235,11 +235,11 @@ class ProfileHandler:
if not profile: if not profile:
return return
profile.install(install_session)
if profile_config.gfx_driver and (profile.is_xorg_type_profile() or profile.is_desktop_profile()): if profile_config.gfx_driver and (profile.is_xorg_type_profile() or profile.is_desktop_profile()):
self.install_gfx_driver(install_session, profile_config.gfx_driver) self.install_gfx_driver(install_session, profile_config.gfx_driver)
profile.install(install_session)
if profile_config.greeter: if profile_config.greeter:
self.install_greeter(install_session, profile_config.greeter) self.install_greeter(install_session, profile_config.greeter)