BarinkOS/run.sh

26 lines
302 B
Bash
Raw Normal View History

2023-02-21 13:36:20 +00:00
#!/bin/bash
PROC=$$
2023-02-21 13:36:20 +00:00
# Build the Corelib static library
(cd CoreLib
if ! make; then
echo "Build failed!"
kill -10 $PROC
fi)
2023-02-21 13:36:20 +00:00
# Build the kernel image
(cd kernel
2023-02-21 13:36:20 +00:00
make clean
make
if ! make; then
echo "Build failed!"
kill -10 $PROC
fi)
2023-02-21 13:36:20 +00:00
./scripts/update_harddrive.sh
2023-02-21 13:36:20 +00:00
./scripts/run_qemu.sh