diff --git a/CHANGELOG.md b/CHANGELOG.md index 42a5274..28cf1ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.19.1] - 2025-06-23 + +### Fixed + +- Fixed path of EFI boot entry + ## [0.19.0] - 2025-06-23 ### Changed diff --git a/ogclient/lib/python3/BootLib.py b/ogclient/lib/python3/BootLib.py index f5f32cb..6df6439 100644 --- a/ogclient/lib/python3/BootLib.py +++ b/ogclient/lib/python3/BootLib.py @@ -174,7 +174,7 @@ def ogBoot (disk, par, nvramperm=False, params=''): # Crear orden de arranque (con unos valores por defecto). l = re.sub ('^.*EFI(.*)$', r'\1', loader) - UEFILib.ogNvramAddEntry (bootlabel, l, nvramperm) + UEFILib.ogNvramAddEntry (bootlabel, '/EFI'+l, nvramperm) # Marcar próximo arranque y reiniciar. UEFILib.ogNvramSetNext (bootlabel) subprocess.run (['reboot'])