21 lines
461 B
Bash
Executable File
21 lines
461 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p base_image
|
|
|
|
# if fox32os.img doesn't exist, then create it
|
|
if [ ! -f fox32os.img ]; then
|
|
echo "fox32os.img not found, creating it"
|
|
build/ryfs/ryfs.py -s 16777216 -l fox32os create fox32os.img
|
|
fi
|
|
|
|
echo "assembling kernel"
|
|
../fox32asm/target/release/fox32asm kernel/main.asm base_image/system.bin
|
|
|
|
echo "adding files to fox32os.img"
|
|
cd base_image
|
|
for file in "./*"; do
|
|
../build/ryfs/ryfs.py add ../fox32os.img $file
|
|
done
|