diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d45f5d..960b850 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). +## [1.4.2] - 2025-09-09 + +## Change + +- Oggit EFI boot fixes + ## [1.4.1] - 2025-09-05 ## Change diff --git a/ogclient/interfaceAdm/RestaurarImagenGit b/ogclient/interfaceAdm/RestaurarImagenGit index 348e1cc..cd441e3 100755 --- a/ogclient/interfaceAdm/RestaurarImagenGit +++ b/ogclient/interfaceAdm/RestaurarImagenGit @@ -2,6 +2,7 @@ import sys import resource import logging +import subprocess import NetLib import ogGlobals @@ -99,6 +100,8 @@ if __name__ == "__main__": og_git.cloneRepo(args.image_name, destination = device, boot_device = device, ref = args.commit, branch = args.branch) + subprocess.run(["/opt/opengnsys/scripts/configureOs", str(args.disk), str(args.partition)], check=True) + logger.info("RestaurarImagenGit Finished.")