diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-08-27 12:34:58 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-08-27 12:34:58 +0200 |
commit | 4b62b80be7a6314ca954539b7ae2a0eac1ad59bd (patch) | |
tree | ea4dbaa3da6638e7ce775085c7f786d817cf4585 | |
parent | 88399507583958f60840fd96556b2d437497bcb3 (diff) |
utils: bcd: update logging related to BCD updates with MBR partition
MBR requires manual bcdedit invocation to generalize image before creation.
Report via logging that no BCD update occurs.
-rw-r--r-- | src/utils/bcd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/bcd.py b/src/utils/bcd.py index 4e541f5..dc85cc3 100644 --- a/src/utils/bcd.py +++ b/src/utils/bcd.py @@ -189,7 +189,7 @@ def update_bcd(disk, part): bcd_path = f'{mountpoint}/EFI/{_bootlabel}/Boot/BCD' boot_part_id = get_partition_id(disk, _esp_part_number) else: - logging.info(f'MBR system detected! BCD modification not implemented') + logging.info(f'MBR system detected, skipping BCD update') return try: |