boot-fixes #112
|
@ -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
|
||||
|
|
|
@ -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.")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue