grub: Use bootloaderEntryName instead of shortProductName.
Use bootloaderEntryName instead of shortProductName as the --bootloader-id.
This commit is contained in:
parent
f892a11a57
commit
727db05fdf
@ -27,7 +27,7 @@ def install_grub(boot_loader, fw_type):
|
|||||||
if fw_type == 'efi':
|
if fw_type == 'efi':
|
||||||
efi_directory = "/boot/efi"
|
efi_directory = "/boot/efi"
|
||||||
branding = libcalamares.globalstorage.value("branding")
|
branding = libcalamares.globalstorage.value("branding")
|
||||||
distribution = branding["shortProductName"]
|
distribution = branding["bootloaderEntryName"]
|
||||||
file_name_sanitizer = str.maketrans(" /", "_-")
|
file_name_sanitizer = str.maketrans(" /", "_-")
|
||||||
check_chroot_call([libcalamares.job.configuration["grubInstall"], "--target=x86_64-efi", "--efi-directory={!s}".format(efi_directory), "--bootloader-id={!s}".format(distribution.translate(file_name_sanitizer))])
|
check_chroot_call([libcalamares.job.configuration["grubInstall"], "--target=x86_64-efi", "--efi-directory={!s}".format(efi_directory), "--bootloader-id={!s}".format(distribution.translate(file_name_sanitizer))])
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user