This commit is contained in:
JMARyA 2024-12-28 03:26:43 +01:00
parent 6cbaf5d969
commit 9f423ebdba
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 12 additions and 0 deletions

2
README.md Normal file
View file

@ -0,0 +1,2 @@
# navOS Install ISO
This repo contains the build files for the navOS install medium.

10
justfile Normal file
View file

@ -0,0 +1,10 @@
default:
@just --list
build:
mkdir -p work
mkdir -p out
mount -t tmpfs -o size=10G tmpfs ./work
mkarchiso -v -w ./work -o ./out .
umount ./work
rmdir ./work