2023-02-21 13:36:20 +00:00
|
|
|
#!/bin/bash
|
2023-02-23 22:54:02 +00:00
|
|
|
PROC=$$
|
2023-02-21 13:36:20 +00:00
|
|
|
|
2023-02-23 22:54:02 +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
|
|
|
|
2023-02-23 22:54:02 +00:00
|
|
|
# Build the kernel image
|
|
|
|
(cd kernel
|
2023-02-21 13:36:20 +00:00
|
|
|
make clean
|
|
|
|
make
|
2023-02-23 22:54:02 +00:00
|
|
|
if ! make; then
|
|
|
|
echo "Build failed!"
|
|
|
|
kill -10 $PROC
|
|
|
|
fi)
|
2023-02-21 13:36:20 +00:00
|
|
|
|
|
|
|
./scripts/update_harddrive.sh
|
2023-02-23 22:54:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-02-21 13:36:20 +00:00
|
|
|
./scripts/run_qemu.sh
|
2023-02-23 22:54:02 +00:00
|
|
|
|