summaryrefslogtreecommitdiff
path: root/src/modules/bootloader/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/bootloader/main.py')
-rw-r--r--src/modules/bootloader/main.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/modules/bootloader/main.py b/src/modules/bootloader/main.py
index f6fb1c648..07eb5f3df 100644
--- a/src/modules/bootloader/main.py
+++ b/src/modules/bootloader/main.py
@@ -213,12 +213,16 @@ def install_grub(efi_directory, fw_type):
:param fw_type:
"""
import json
+
+
print("bootloader::install_grub()" + fw_type)
print("bootloader::install_grub() boot_loader=" + json.dumps(libcalamares.globalstorage.value("bootLoader")))
if libcalamares.globalstorage.value("bootLoader") != None:
- print("bootloader::install_grub() boot_loader=" + json.dumps(libcalamares.globalstorage.value("bootLoader")["installPath"]))
+ print("bootloader::install_grub() installPath=" + json.dumps(libcalamares.globalstorage.value("bootLoader")["installPath"]))
print("bootloader::install_grub() grubMkconfig=" + libcalamares.job.configuration["grubMkconfig"])
print("bootloader::install_grub() grubCfg=" + libcalamares.job.configuration["grubCfg"])
+
+
if fw_type == "efi":
print("Bootloader: grub (efi)")
install_path = libcalamares.globalstorage.value("rootMountPoint")