diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-10-22 13:41:45 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-10-22 16:47:44 +0200 |
commit | fb707cef0b1ebf22b7001613203d58c9e36f951f (patch) | |
tree | 455b274efbfcb876abda5c75cf2d22240678e266 /src/utils/boot.py | |
parent | 373c1b2a724a3855f93d9cc4b48d0c33310a482c (diff) |
grub: move get_grub_boot_params() into grub.py
Move get_grub_boot_params() into the file related to all the grub
configuration.
Diffstat (limited to 'src/utils/boot.py')
-rw-r--r-- | src/utils/boot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/boot.py b/src/utils/boot.py index 244f994..5e337a4 100644 --- a/src/utils/boot.py +++ b/src/utils/boot.py @@ -13,6 +13,7 @@ import subprocess from src.utils.probe import OSFamily, get_os_family, get_linux_distro_id, os_probe from src.utils.disk import get_partition_device, get_efi_partition +from src.utils.grub import get_grub_boot_params from src.utils.bios import * from src.utils.uefi import * from src.utils.fs import * |