summaryrefslogtreecommitdiffstats
path: root/src/utils/bios.py
Commit message (Collapse)AuthorAgeFilesLines
* utils: fix string not being defined as f-strings when they shouldAlejandro Sirgo Rica2024-03-211-2/+2
| | | | | Add the string prefix f'' to string instances formated as f-string but not properly constructed to expand the inline variables.
* utils: implement BIOS boot for LinuxAlejandro Sirgo Rica2024-03-211-0/+53
Create a bios.py file to hold all the BIOS specific functions. Implement the _boot_bios_linux in Python. The new boot process tries to find the vmlinuz and initrd binaries at the desired partition. Then it tries to load them with kexec with the proper Grub boot params. One step closer to the removal of the boot legacy script.