Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-04-12 14:52:14 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2021-04-12 14:52:14 +0200
commit18b5ebff446f446205e17aa34c5912b8ee6c598c (patch)
tree97ee19c42316960ce69efdf09b8502b8bbf5504f /archinstall
parentae33151b9b1549eed36071e24c34170ac6009988 (diff)
parent897b67f7518b5fc0bac1f8a3fd02dc2d1266aea7 (diff)
Moving warning about UEFI to guided for now.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 4ff9e80a..7aa64816 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -449,4 +449,6 @@ class Installer():
with open(f'{self.target}/etc/vconsole.conf', 'w') as vconsole:
vconsole.write(f'KEYMAP={language}\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