From 9f423ebdba194b017deb4b26bed39ebf7a19ab56 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Sat, 28 Dec 2024 03:26:43 +0100 Subject: [PATCH] update --- README.md | 2 ++ justfile | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 justfile 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