index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-11 22:33:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 22:33:29 +0000 |
commit | 78bedb6d8a148d5329a8af82ab1484c48b38f8b3 (patch) | |
tree | 1413a1277f96b69d89c6b006ae7ba8ec65503d0c | |
parent | 6f08ad1d4b333ca12c4d729fbcb029b49097ce7d (diff) | |
parent | 613133f96fabc05b6dc30507024e6164f9e1c3bd (diff) |
-rw-r--r-- | archinstall/__init__.py | 4 |
diff --git a/archinstall/__init__.py b/archinstall/__init__.py index d98b6daa..c80c6a62 100644 --- a/archinstall/__init__.py +++ b/archinstall/__init__.py @@ -16,6 +16,10 @@ from .lib.hardware import * __version__ = "2.1.3" +if hasUEFI() is False: + log("Archinstall currently only support UEFI booted machines. MBR & Grub is coming in version 2.2.0!", fg="red", LOG_LEVELS.Error) + exit(1) + ## Basic version of arg.parse() supporting: ## --key=value ## --boolean |