Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-11-16 15:45:06 +0000
committerAnton Hvornum <anton.feeds@gmail.com>2021-11-16 15:45:06 +0000
commitad7d25fa92e0c49450095e13b6e4fe0e716799a9 (patch)
treecf399311e9826a67f4bbb962bd8b26c1e36e7f1c /archinstall/lib/installer.py
parent8799973895a8bb198c72522535852b3a9bfe83d9 (diff)
Clarification on boot entries when using multiple kernels
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 40f6410b..c15a0cdb 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -578,7 +578,7 @@ class Installer:
with open(f'{self.target}/boot/loader/entries/{self.init_time}_{kernel}.conf', 'w') as entry:
entry.write('# Created by: archinstall\n')
entry.write(f'# Created on: {self.init_time}\n')
- entry.write('title Arch Linux\n')
+ entry.write(f'title Arch Linux ({kernel})\n')
entry.write(f"linux /vmlinuz-{kernel}\n")
if not is_vm():
vendor = cpu_vendor()