Moving warning about UEFI to guided for now.
This commit is contained in:
commit
18b5ebff44
|
|
@ -449,4 +449,6 @@ class Installer():
|
||||||
with open(f'{self.target}/etc/vconsole.conf', 'w') as vconsole:
|
with open(f'{self.target}/etc/vconsole.conf', 'w') as vconsole:
|
||||||
vconsole.write(f'KEYMAP={language}\n')
|
vconsole.write(f'KEYMAP={language}\n')
|
||||||
vconsole.write(f'FONT=lat9w-16\n')
|
vconsole.write(f'FONT=lat9w-16\n')
|
||||||
|
else:
|
||||||
|
self.log(f'Keyboard language was not changed from default (no language specified).', fg="yellow", level=LOG_LEVELS.Info)
|
||||||
return True
|
return True
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ from archinstall.lib.hardware import hasUEFI
|
||||||
from archinstall.lib.profiles import Profile
|
from archinstall.lib.profiles import Profile
|
||||||
|
|
||||||
if hasUEFI() is False:
|
if hasUEFI() is False:
|
||||||
log("Archinstall currently only support UEFI booted machines. MBR & GRUB is coming in version 2.2.0!", fg="red", level=archinstall.LOG_LEVELS.Error)
|
log("ArchInstall currently only supports machines booted with UEFI. MBR & GRUB support is coming in version 2.2.0!", fg="red", level=archinstall.LOG_LEVELS.Error)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
def ask_user_questions():
|
def ask_user_questions():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue