From 7a310ef27bafd0482933b2b021836aae5ef34327 Mon Sep 17 00:00:00 2001 From: demmm Date: Sun, 12 Oct 2014 18:21:28 -0400 Subject: [PATCH] rename grub to bootloader calls --- src/modules/bootloader/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/bootloader/main.py b/src/modules/bootloader/main.py index 62d37e244..0faf06ca1 100644 --- a/src/modules/bootloader/main.py +++ b/src/modules/bootloader/main.py @@ -79,7 +79,7 @@ def create_loader(loader_path): f.write(l) f.close() -def install_grub(boot_loader, fw_type): +def install_bootloader(boot_loader, fw_type): if fw_type == 'efi': install_path = libcalamares.globalstorage.value( "rootMountPoint" ) uuid = get_uuid() @@ -98,5 +98,5 @@ def run(): detect_firmware_type() boot_loader = libcalamares.globalstorage.value("bootLoader") fw_type = libcalamares.globalstorage.value("firmwareType") - install_grub(boot_loader, fw_type) + install_bootloader(boot_loader, fw_type) return None