diff --git a/README.md b/README.md new file mode 100644 index 0000000..c9b7e34 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# navOS Install ISO +This repo contains the build files for the navOS install medium. diff --git a/justfile b/justfile new file mode 100644 index 0000000..b96ba0e --- /dev/null +++ b/justfile @@ -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