Create system disk image

This commit is contained in:
2025-10-14 21:50:25 +02:00
parent 1f7f81016e
commit fd8c6f6441
4 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,8 @@
#!/bin/sh
make -B kernel && make -B ulib && make -B user && make base && make iso
make -B kernel && \
make -B ulib && \
make -B user && \
make base && \
make system && \
make iso

4
scripts/mksystemimg.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
rm -f system.img
mklittlefs -c system -b 512 -s $((1<<20)) system.img