Skip to content

Commit 820c1c8

Browse files
Update bash.sh
1 parent 65d7884 commit 820c1c8

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

bash.sh

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ uv pip install "weblate[all]"
4646

4747
# --- CONFIGURATION ---
4848
GITHUB_USERNAME="web4application"
49-
REPO_NAME="SERAI"
50-
GITHUB_URL="https://github.com/$GITHUB_USERNAME/$REPO_NAME.git"
49+
REPO_NAME="Aura"
50+
GITHUB_URL="https://github.com/$web4application/$aura.git"
5151
PYTHON_VERSION="3.11"
5252

5353
# --- INIT GIT ---
@@ -71,6 +71,24 @@ git checkout -b dev
7171
git checkout -b test
7272
git checkout main
7373

74+
sudo apt update
75+
sudo apt install debootstrap xorriso squashfs-tools grub-pc-bin grub-efi-amd64-bin mtools
76+
mkdir ~/minios
77+
cd ~/minios
78+
mkdir chroot iso
79+
80+
sudo chroot chroot /bin/bash
81+
82+
chmod +x /usr/local/bin/mini-build
83+
84+
cd ~/minios
85+
mkdir -p iso/live
86+
sudo mksquashfs chroot iso/live/filesystem.squashfs -e boot
87+
cp -r chroot/boot iso/boot
88+
grub-mkrescue -o MiniOS.iso iso
89+
90+
qemu-system-x86_64 -cdrom MiniOS.iso -m 2048
91+
7492
weblate createadmin
7593
. ~/weblate-env/bin/activate
7694
# --- OPTIONAL: Setup GitHub Actions CI ---

0 commit comments

Comments
 (0)