boot-fixes #112

Merged
vtroshchinskiy merged 2 commits from boot-fixes into main 2025-09-09 11:44:18 +02:00
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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.")