OIB
OS Image Builder? It is just a simple GPT+FAT image builder.
Usage
You can pass a config file:
Or pass your arguments directly:
# Combine config file with additional command line options
Available Options
-o, --output: Output image path-c, --config: Config file path-f, --file: Add a file to the image (format: source:destination)-d, --dir: Add a folder to the image (format: source:destination)
Command line arguments take precedence over configuration file settings when both are provided.
Example Config
= "output.img"
[[]]
= "build/kernel"
= "kernel"
[[]]
= "assets/BOOTX64.EFI"
= "efi/boot/bootx64.efi"
[[]]
= "assets/limine.conf"
= "limine.conf"
[[]]
= "assets/static"
= "static"
Acknowledgement
The code is based on bootloader, a great pure-rust x86 bootloader.