This commit is contained in:
2025-09-27 22:09:23 +03:00
commit 914c0295ac
2468 changed files with 204262 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/bash
make_empty_folders() {
ROOT_PATH="./squashfs-root/"
cd ${ROOT_PATH}
mkdir -p boot \
dev/pts \
dev/shm \
media/Data \
mnt \
opt \
proc \
root \
run/dbus \
sys \
tmp/fontconfig \
var/lib/alsa \
var/www
}