1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 19:07:54 +01:00

add variant variable

This commit is contained in:
Jason N. 2024-02-14 19:43:11 +00:00
parent 870561781c
commit 9589d82053
2 changed files with 9 additions and 4 deletions

View file

@ -3,13 +3,14 @@ version = 39
base_dir = $(shell pwd)
image_repo = ghcr.io/ublue-os
image_name = base-main
variant = Server
deploy.iso: boot.iso xorriso/input.txt $(image_name)-$(version)
xorriso -dialog on < xorriso/input.txt
boot.iso: lorax_templates/set_installer.tmpl
rm -Rf results
lorax -p Fedora -v $(version) -r $(version) -t Server \
lorax -p Fedora -v $(version) -r $(version) -t $(variant) \
--isfinal --buildarch=$(arch) --volid=Fedora-S-dvd-$(arch)-$(version) \
--macboot --noupgrade \
--repo /etc/yum.repos.d/fedora.repo \