first commit

This commit is contained in:
2025-09-22 23:12:44 +02:00
commit 1bc83085c6
36 changed files with 409 additions and 0 deletions

16
build.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
PROFILEPATH="$(realpath "$(dirname "$0")/profiles/boot-to-firefox")"
IMAGEPATH="/tmp/boot-to-firefox"
WORKPATH="$IMAGEPATH/work"
OUTPATH="$IMAGEPATH/out"
if [ -d "$IMAGEPATH" ]; then
sudo rm -R "$IMAGEPATH"
fi
mkdir -p "$WORKPATH"
mkdir -p "$OUTPATH"
sudo mkarchiso -v -w "$WORKPATH" -o "$OUTPATH" "$PROFILEPATH"